mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
57 lines
1.2 KiB
Nix
57 lines
1.2 KiB
Nix
{ lib, buildPythonPackage, fetchPypi, pythonOlder,
|
|
# Build inputs
|
|
dateutil, six, text-unidecode, ipaddress ? null
|
|
# Test inputs
|
|
, email_validator
|
|
, freezegun
|
|
, mock
|
|
, more-itertools
|
|
, pytest
|
|
, pytestrunner
|
|
, random2
|
|
, ukpostcodeparser
|
|
, validators
|
|
}:
|
|
|
|
assert pythonOlder "3.3" -> ipaddress != null;
|
|
|
|
buildPythonPackage rec {
|
|
pname = "Faker";
|
|
version = "4.1.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "103c46b9701a151299c5bffe6fefcd4fb5fb04c3b5d06bee4952d36255d44ea2";
|
|
};
|
|
|
|
nativeBuildInputs = [ pytestrunner ];
|
|
checkInputs = [
|
|
email_validator
|
|
freezegun
|
|
pytest
|
|
random2
|
|
ukpostcodeparser
|
|
validators
|
|
]
|
|
++ lib.optionals (pythonOlder "3.3") [ mock ]
|
|
++ lib.optionals (pythonOlder "3.0") [ more-itertools ];
|
|
|
|
propagatedBuildInputs = [
|
|
dateutil
|
|
six
|
|
text-unidecode
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py --replace "pytest>=3.8.0,<3.9" "pytest"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A Python library for generating fake user data";
|
|
homepage = "http://faker.rtfd.org";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|