1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/python-modules/faker/default.nix

40 lines
925 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
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";
2018-11-20 10:58:35 +00:00
version = "0.9.3";
2017-07-04 00:33:04 +01:00
src = fetchPypi {
inherit pname version;
2018-11-20 10:58:35 +00:00
sha256 = "8c6df7903c7b4a51f4ac273bc5fec79a249e3220c47b35d1ac1175b41982d772";
2017-07-04 00:33:04 +01:00
};
checkInputs = [
email_validator
mock
ukpostcodeparser
2018-11-04 10:34:58 +00:00
pytestrunner
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
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;
};
}