pythonPackages.faker: 1.0.8 -> 2.0.3
This commit is contained in:
parent
5ea783a60c
commit
96ea386418
@ -10,26 +10,28 @@
|
|||||||
, pytestrunner
|
, pytestrunner
|
||||||
, random2
|
, random2
|
||||||
, ukpostcodeparser
|
, ukpostcodeparser
|
||||||
|
, validators
|
||||||
}:
|
}:
|
||||||
|
|
||||||
assert pythonOlder "3.3" -> ipaddress != null;
|
assert pythonOlder "3.3" -> ipaddress != null;
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "Faker";
|
pname = "Faker";
|
||||||
version = "1.0.8";
|
version = "2.0.3";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "6886d58f3c24d8ecdaa3740b138121614197ffd3e0adfb0cb02ca4e71e292dfe";
|
sha256 = "19zdcdmc11syjbmnbq98yny3dwb5jqw8cxcbq9g2scwzc5f7b32y";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pytestrunner ];
|
nativeBuildInputs = [ pytestrunner ];
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
email_validator
|
email_validator
|
||||||
freezegun
|
freezegun
|
||||||
pytest
|
pytest
|
||||||
random2
|
random2
|
||||||
ukpostcodeparser
|
ukpostcodeparser
|
||||||
|
validators
|
||||||
]
|
]
|
||||||
++ lib.optionals (pythonOlder "3.3") [ mock ]
|
++ lib.optionals (pythonOlder "3.3") [ mock ]
|
||||||
++ lib.optionals (pythonOlder "3.0") [ more-itertools ];
|
++ lib.optionals (pythonOlder "3.0") [ more-itertools ];
|
||||||
@ -38,18 +40,10 @@ buildPythonPackage rec {
|
|||||||
dateutil
|
dateutil
|
||||||
six
|
six
|
||||||
text-unidecode
|
text-unidecode
|
||||||
] ++ lib.optional (pythonOlder "3.3") ipaddress;
|
];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace setup.py --replace "pytest>=3.8.0,<3.9" "pytest"
|
substituteInPlace setup.py --replace "pytest>=3.8.0,<3.9" "pytest"
|
||||||
|
|
||||||
# see https://github.com/joke2k/faker/pull/911, fine since we pin correct
|
|
||||||
# versions for python2
|
|
||||||
substituteInPlace setup.py --replace "more-itertools<6.0.0" "more-itertools"
|
|
||||||
|
|
||||||
# https://github.com/joke2k/faker/issues/970
|
|
||||||
substituteInPlace setup.py --replace "random2==1.0.1" "random2>=1.0.1"
|
|
||||||
substituteInPlace setup.py --replace "freezegun==0.3.11" "freezegun>=0.3.11"
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user