pythonPackages.faker: refactor remove pytest requirements
This commit is contained in:
parent
0ae8b4868c
commit
d39d85c0b2
@ -15,11 +15,11 @@ buildPythonPackage rec {
|
|||||||
sha256 = "8c6df7903c7b4a51f4ac273bc5fec79a249e3220c47b35d1ac1175b41982d772";
|
sha256 = "8c6df7903c7b4a51f4ac273bc5fec79a249e3220c47b35d1ac1175b41982d772";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
buildInputs = [ pytestrunner ];
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
email_validator
|
email_validator
|
||||||
mock
|
mock
|
||||||
ukpostcodeparser
|
ukpostcodeparser
|
||||||
pytestrunner
|
|
||||||
pytest
|
pytest
|
||||||
];
|
];
|
||||||
|
|
||||||
@ -29,6 +29,10 @@ buildPythonPackage rec {
|
|||||||
text-unidecode
|
text-unidecode
|
||||||
] ++ lib.optional (pythonOlder "3.3") ipaddress;
|
] ++ lib.optional (pythonOlder "3.3") ipaddress;
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace setup.py --replace "pytest>=3.8.0,<3.9" "pytest"
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A Python library for generating fake user data";
|
description = "A Python library for generating fake user data";
|
||||||
homepage = http://faker.rtfd.org;
|
homepage = http://faker.rtfd.org;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user