nixpkgs/pkgs/development/python-modules/faker/default.nix

60 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, pythonOlder,
# Build inputs
dateutil, six, text-unidecode, ipaddress ? null
# Test inputs
, email_validator
, freezegun
, mock
, more-itertools
, pytestCheckHook
, pytestrunner
, ukpostcodeparser
, validators
}:
2017-07-04 01:33:04 +02:00
assert pythonOlder "3.3" -> ipaddress != null;
2017-07-04 01:33:04 +02:00
buildPythonPackage rec {
pname = "Faker";
version = "4.18.0";
2017-07-04 01:33:04 +02:00
src = fetchPypi {
inherit pname version;
sha256 = "0raxw6mgvf9523v7917zqw76vqnpp0d6v3i310qnjnhpxmm78yb2";
2017-07-04 01:33:04 +02:00
};
2019-10-18 01:04:09 +02:00
nativeBuildInputs = [ pytestrunner ];
2017-07-04 01:33:04 +02:00
checkInputs = [
email_validator
freezegun
pytestCheckHook
ukpostcodeparser
2019-10-18 01:04:09 +02:00
validators
]
++ lib.optionals (pythonOlder "3.3") [ mock ]
++ lib.optionals (pythonOlder "3.0") [ more-itertools ];
2017-07-04 01:33:04 +02:00
# avoid tests which import random2, an abandoned library
pytestFlagsArray = [
"--ignore=tests/providers/test_ssn.py"
];
2017-07-04 01:33:04 +02:00
propagatedBuildInputs = [
dateutil
six
text-unidecode
2019-10-18 01:04:09 +02:00
];
2017-07-04 01:33:04 +02:00
postPatch = ''
substituteInPlace setup.py --replace "pytest>=3.8.0,<3.9" "pytest"
'';
2017-07-04 01:33:04 +02:00
meta = with lib; {
description = "A Python library for generating fake user data";
homepage = "http://faker.rtfd.org";
2017-07-04 01:33:04 +02:00
license = licenses.mit;
maintainers = with maintainers; [ lovek323 ];
platforms = platforms.unix;
};
}