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

45 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, pythonOlder,
2017-07-04 00:33:04 +01:00
# Build inputs
dateutil, six, text-unidecode, ipaddress ? null,
2017-07-04 00:33:04 +01:00
# Test inputs
2018-11-04 10:34:58 +00:00
email_validator, mock, ukpostcodeparser, pytestrunner, pytest}:
2017-07-04 00:33:04 +01:00
assert pythonOlder "3.3" -> ipaddress != null;
2017-07-04 00:33:04 +01:00
buildPythonPackage rec {
pname = "Faker";
version = "1.0.2";
2017-07-04 00:33:04 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "0v1pjzn9z20ckgv3kji7c8nwcsm7670z4i43ic9skjrdbcqylwfq";
2017-07-04 00:33:04 +01:00
};
buildInputs = [ pytestrunner ];
2017-07-04 00:33:04 +01:00
checkInputs = [
email_validator
mock
ukpostcodeparser
2018-11-04 10:34:58 +00:00
pytest
2017-07-04 00:33:04 +01:00
];
propagatedBuildInputs = [
dateutil
six
text-unidecode
] ++ lib.optional (pythonOlder "3.3") ipaddress;
2017-07-04 00:33:04 +01:00
postPatch = ''
find tests -type d -name "__pycache__" | xargs rm -r
substituteInPlace setup.py --replace "pytest>=3.8.0,<3.9" "pytest"
'';
2017-07-04 00:33:04 +01:00
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;
};
}