nixpkgs/pkgs/development/python-modules/faker/default.nix
R. RyanTM bb5ebed17f python37Packages.faker: 0.9.3 -> 1.0.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-faker/versions
2019-01-04 17:36:39 -05:00

44 lines
1.0 KiB
Nix

{ lib, buildPythonPackage, fetchPypi, pythonOlder,
# Build inputs
dateutil, six, text-unidecode, ipaddress ? null,
# Test inputs
email_validator, mock, ukpostcodeparser, pytestrunner, pytest}:
assert pythonOlder "3.3" -> ipaddress != null;
buildPythonPackage rec {
pname = "Faker";
version = "1.0.1";
src = fetchPypi {
inherit pname version;
sha256 = "067mdy9p1vbkypr3vazmrb0sga6maqbk542hr7hmzcb5lp3dr8sj";
};
buildInputs = [ pytestrunner ];
checkInputs = [
email_validator
mock
ukpostcodeparser
pytest
];
propagatedBuildInputs = [
dateutil
six
text-unidecode
] ++ lib.optional (pythonOlder "3.3") ipaddress;
postPatch = ''
substituteInPlace setup.py --replace "pytest>=3.8.0,<3.9" "pytest"
'';
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;
};
}