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

39 lines
892 B
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
email_validator, nose, mock, ukpostcodeparser }:
assert pythonOlder "3.3" -> ipaddress != null;
2017-07-04 00:33:04 +01:00
buildPythonPackage rec {
pname = "Faker";
2018-04-04 19:08:17 +01:00
version = "0.8.12";
2017-07-04 00:33:04 +01:00
src = fetchPypi {
inherit pname version;
2018-04-04 19:08:17 +01:00
sha256 = "9cc12b821f32ff45f6edfdc1ab7be3893b60b1224e952d68322a57e5b26a4a15";
2017-07-04 00:33:04 +01:00
};
checkInputs = [
email_validator
nose
mock
ukpostcodeparser
];
propagatedBuildInputs = [
dateutil
six
text-unidecode
] ++ 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;
};
}