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-03 23:33:04 +00:00
buildPythonPackage rec {
pname = "Faker";
2021-03-24 09:28:11 +00:00
version = "6.6.2";
2017-07-03 23:33:04 +00:00
src = fetchPypi {
inherit pname version;
2021-03-24 09:28:11 +00:00
sha256 = "f43ac743c34affb1c7fccca8b06450371cd482b6ddcb4110e420acb24356e70b";
2017-07-03 23:33:04 +00:00
};
propagatedBuildInputs = [
dateutil
text-unidecode
];
2017-07-03 23:33:04 +00:00
checkInputs = [
freezegun
pytestCheckHook
ukpostcodeparser
2019-10-17 23:04:09 +00:00
validators
];
2017-07-03 23:33:04 +00:00
# avoid tests which import random2, an abandoned library
pytestFlagsArray = [
"--ignore=tests/providers/test_ssn.py"
];
pythonImportsCheck = [ "faker" ];
2017-07-03 23:33:04 +00:00
meta = with lib; {
description = "Python library for generating fake user data";
homepage = "http://faker.rtfd.org";
license = licenses.mit;
2017-07-03 23:33:04 +00:00
maintainers = with maintainers; [ lovek323 ];
};
}