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

46 lines
872 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, dateutil
, text-unidecode
, freezegun
, pytestCheckHook
, ukpostcodeparser
, validators
}:
2017-07-04 00:33:04 +01:00
buildPythonPackage rec {
pname = "Faker";
2021-06-18 22:47:15 +01:00
version = "6.6.3";
2017-07-04 00:33:04 +01:00
src = fetchPypi {
inherit pname version;
2021-06-18 22:47:15 +01:00
sha256 = "c2852cadc99a4ebdbf06934e4c15e30f2307d414ead21d15605759602645f152";
2017-07-04 00:33:04 +01:00
};
propagatedBuildInputs = [
dateutil
text-unidecode
];
2017-07-04 00:33:04 +01:00
checkInputs = [
freezegun
pytestCheckHook
ukpostcodeparser
2019-10-18 00:04:09 +01:00
validators
];
2017-07-04 00:33:04 +01:00
# avoid tests which import random2, an abandoned library
pytestFlagsArray = [
"--ignore=tests/providers/test_ssn.py"
];
pythonImportsCheck = [ "faker" ];
2017-07-04 00:33:04 +01:00
meta = with lib; {
description = "Python library for generating fake user data";
homepage = "http://faker.rtfd.org";
license = licenses.mit;
2017-07-04 00:33:04 +01:00
maintainers = with maintainers; [ lovek323 ];
};
}