python37Packages.faker: 1.0.5 -> 1.0.7
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-faker/versions
This commit is contained in:
parent
6858eda213
commit
6518817736
1 changed files with 5 additions and 5 deletions
|
@ -16,23 +16,23 @@ assert pythonOlder "3.3" -> ipaddress != null;
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "Faker";
|
pname = "Faker";
|
||||||
version = "1.0.5";
|
version = "1.0.7";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "3f2f4570df28df2eb8f39b00520eb610081d6552975e926c6a2cbc64fd89c4c1";
|
sha256 = "1jins8jlqyxjwx6i2h2jknwwfpi0bpz1qggvw6xnbxl0g9spyiv0";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pytestrunner ];
|
buildInputs = [ pytestrunner ];
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
email_validator
|
email_validator
|
||||||
freezegun
|
freezegun
|
||||||
mock
|
|
||||||
more-itertools
|
|
||||||
pytest
|
pytest
|
||||||
random2
|
random2
|
||||||
ukpostcodeparser
|
ukpostcodeparser
|
||||||
];
|
]
|
||||||
|
++ lib.optionals (pythonOlder "3.3") [ mock ]
|
||||||
|
++ lib.optionals (pythonOlder "3.0") [ more-itertools ];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
dateutil
|
dateutil
|
||||||
|
|
Loading…
Reference in a new issue