Merge pull request #61110 from mmlb/fix-faker-builds

pythonPackages.faker: fix build
This commit is contained in:
worldofpeace 2019-05-07 21:38:55 -04:00 committed by GitHub
commit 4f49ae8259
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,8 +1,16 @@
{ lib, buildPythonPackage, fetchPypi, pythonOlder,
# Build inputs
dateutil, six, text-unidecode, ipaddress ? null,
dateutil, six, text-unidecode, ipaddress ? null
# Test inputs
email_validator, mock, ukpostcodeparser, pytestrunner, pytest}:
, email_validator
, freezegun
, mock
, more-itertools
, pytest
, pytestrunner
, random2
, ukpostcodeparser
}:
assert pythonOlder "3.3" -> ipaddress != null;
@ -18,9 +26,12 @@ buildPythonPackage rec {
buildInputs = [ pytestrunner ];
checkInputs = [
email_validator
freezegun
mock
ukpostcodeparser
more-itertools
pytest
random2
ukpostcodeparser
];
propagatedBuildInputs = [
@ -30,8 +41,11 @@ buildPythonPackage rec {
] ++ lib.optional (pythonOlder "3.3") ipaddress;
postPatch = ''
find tests -type d -name "__pycache__" | xargs rm -r
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"
'';
meta = with lib; {