3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/faker/default.nix

39 lines
888 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, pythonOlder,
2017-07-04 00:33:04 +01:00
# Build inputs
dateutil, six, ipaddress ? null,
2017-07-04 00:33:04 +01:00
# Test inputs
email_validator, nose, mock, ukpostcodeparser }:
assert pythonOlder "3.3" -> ipaddress != null;
2017-07-04 00:33:04 +01:00
buildPythonPackage rec {
pname = "Faker";
2017-11-24 19:36:20 +00:00
version = "0.8.7";
2017-07-04 00:33:04 +01:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2017-11-24 19:36:20 +00:00
sha256 = "bf7dabcd6807c8829da28a4de491adf7998af506b8571db6a6eb58161157248a";
2017-07-04 00:33:04 +01:00
};
checkInputs = [
email_validator
nose
mock
ukpostcodeparser
];
propagatedBuildInputs = [
dateutil
six
] ++ lib.optional (pythonOlder "3.3") ipaddress;
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;
};
}