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

39 lines
892 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, pythonOlder,
2017-07-03 23:33:04 +00:00
# Build inputs
dateutil, six, text-unidecode, ipaddress ? null,
2017-07-03 23:33:04 +00:00
# Test inputs
email_validator, nose, mock, ukpostcodeparser }:
assert pythonOlder "3.3" -> ipaddress != null;
2017-07-03 23:33:04 +00:00
buildPythonPackage rec {
pname = "Faker";
2018-07-22 10:08:47 +00:00
version = "0.8.17";
2017-07-03 23:33:04 +00:00
src = fetchPypi {
inherit pname version;
2018-07-22 10:08:47 +00:00
sha256 = "0e9a1227a3a0f3297a485715e72ee6eb77081b17b629367042b586e38c03c867";
2017-07-03 23:33:04 +00:00
};
checkInputs = [
email_validator
nose
mock
ukpostcodeparser
];
propagatedBuildInputs = [
dateutil
six
text-unidecode
] ++ lib.optional (pythonOlder "3.3") ipaddress;
2017-07-03 23:33:04 +00: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;
};
}