aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/faker
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2019-10-05 12:43:18 +0000
committerKatharina Fey <kookie@spacekookie.de>2019-10-05 12:44:52 +0000
commitcf85056ba64caf3267d43255ef4a1243e9c8ee3b (patch)
tree3051519e9c8275b870aac43f80af875715c9d124 /nixpkgs/pkgs/development/python-modules/faker
parent1148b1d122bc03e9a3665856c9b7bb96bd4e3994 (diff)
parent2436c27541b2f52deea3a4c1691216a02152e729 (diff)
Add 'nixpkgs/' from commit '2436c27541b2f52deea3a4c1691216a02152e729'
git-subtree-dir: nixpkgs git-subtree-mainline: 1148b1d122bc03e9a3665856c9b7bb96bd4e3994 git-subtree-split: 2436c27541b2f52deea3a4c1691216a02152e729
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/faker')
-rw-r--r--nixpkgs/pkgs/development/python-modules/faker/default.nix62
1 files changed, 62 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/faker/default.nix b/nixpkgs/pkgs/development/python-modules/faker/default.nix
new file mode 100644
index 00000000000..e597e07ca36
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/faker/default.nix
@@ -0,0 +1,62 @@
+{ lib, buildPythonPackage, fetchPypi, pythonOlder,
+ # Build inputs
+ dateutil, six, text-unidecode, ipaddress ? null
+ # Test inputs
+ , email_validator
+ , freezegun
+ , mock
+ , more-itertools
+ , pytest
+ , pytestrunner
+ , random2
+ , ukpostcodeparser
+}:
+
+assert pythonOlder "3.3" -> ipaddress != null;
+
+buildPythonPackage rec {
+ pname = "Faker";
+ version = "1.0.7";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1jins8jlqyxjwx6i2h2jknwwfpi0bpz1qggvw6xnbxl0g9spyiv0";
+ };
+
+ buildInputs = [ pytestrunner ];
+ checkInputs = [
+ email_validator
+ freezegun
+ pytest
+ random2
+ ukpostcodeparser
+ ]
+ ++ lib.optionals (pythonOlder "3.3") [ mock ]
+ ++ lib.optionals (pythonOlder "3.0") [ more-itertools ];
+
+ propagatedBuildInputs = [
+ dateutil
+ six
+ text-unidecode
+ ] ++ lib.optional (pythonOlder "3.3") ipaddress;
+
+ postPatch = ''
+ substituteInPlace setup.py --replace "pytest>=3.8.0,<3.9" "pytest"
+
+ # see https://github.com/joke2k/faker/pull/911, fine since we pin correct
+ # versions for python2
+ substituteInPlace setup.py --replace "more-itertools<6.0.0" "more-itertools"
+
+ # https://github.com/joke2k/faker/issues/970
+ substituteInPlace setup.py --replace "random2==1.0.1" "random2>=1.0.1"
+ substituteInPlace setup.py --replace "freezegun==0.3.11" "freezegun>=0.3.11"
+ '';
+
+ 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;
+ };
+}