Merge pull request #61898 from r-ryantm/auto-update/python3.7-Faker

python37Packages.faker: 1.0.5 -> 1.0.7
This commit is contained in:
Mario Rodas 2019-05-22 21:31:00 -05:00 committed by GitHub
commit aac5bd55fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,23 +16,23 @@ assert pythonOlder "3.3" -> ipaddress != null;
buildPythonPackage rec {
pname = "Faker";
version = "1.0.5";
version = "1.0.7";
src = fetchPypi {
inherit pname version;
sha256 = "3f2f4570df28df2eb8f39b00520eb610081d6552975e926c6a2cbc64fd89c4c1";
sha256 = "1jins8jlqyxjwx6i2h2jknwwfpi0bpz1qggvw6xnbxl0g9spyiv0";
};
buildInputs = [ pytestrunner ];
checkInputs = [
email_validator
freezegun
mock
more-itertools
pytest
random2
ukpostcodeparser
];
]
++ lib.optionals (pythonOlder "3.3") [ mock ]
++ lib.optionals (pythonOlder "3.0") [ more-itertools ];
propagatedBuildInputs = [
dateutil