summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-01-13 12:32:42 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2021-01-13 12:32:42 +0100
commit6e31a9a2d0e4a6e706114e0f3d3516e10e608e6d (patch)
tree8989a26ae8fbb85e585e310f1679243512576b9d /pkgs
parent31b4ce9d67ad73ba82b3aafcf5c5790654da6377 (diff)
downloadnixpkgs-6e31a9a2d0e4a6e706114e0f3d3516e10e608e6d.tar
nixpkgs-6e31a9a2d0e4a6e706114e0f3d3516e10e608e6d.tar.gz
nixpkgs-6e31a9a2d0e4a6e706114e0f3d3516e10e608e6d.tar.bz2
nixpkgs-6e31a9a2d0e4a6e706114e0f3d3516e10e608e6d.tar.lz
nixpkgs-6e31a9a2d0e4a6e706114e0f3d3516e10e608e6d.tar.xz
nixpkgs-6e31a9a2d0e4a6e706114e0f3d3516e10e608e6d.tar.zst
nixpkgs-6e31a9a2d0e4a6e706114e0f3d3516e10e608e6d.zip
python3Packages.faker: adjust requirements and check part
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/faker/default.nix44
1 files changed, 15 insertions, 29 deletions
diff --git a/pkgs/development/python-modules/faker/default.nix b/pkgs/development/python-modules/faker/default.nix
index 6a7d7f6e146..990908efe03 100644
--- a/pkgs/development/python-modules/faker/default.nix
+++ b/pkgs/development/python-modules/faker/default.nix
@@ -1,19 +1,14 @@
-{ lib, buildPythonPackage, fetchPypi, pythonOlder,
-# Build inputs
-dateutil, six, text-unidecode, ipaddress ? null
-# Test inputs
-, email_validator
+{ lib
+, buildPythonPackage
+, fetchPypi
+, dateutil
+, text-unidecode
 , freezegun
-, mock
-, more-itertools
 , pytestCheckHook
-, pytestrunner
 , ukpostcodeparser
 , validators
 }:
 
-assert pythonOlder "3.3" -> ipaddress != null;
-
 buildPythonPackage rec {
   pname = "Faker";
   version = "5.5.1";
@@ -23,37 +18,28 @@ buildPythonPackage rec {
     sha256 = "1bskhmiir1ajipj7j535j2mxgnp6s3mxbvlag4aryj9zbhgg1c19";
   };
 
-  nativeBuildInputs = [ pytestrunner ];
+  propagatedBuildInputs = [
+    dateutil
+    text-unidecode
+  ];
+
   checkInputs = [
-    email_validator
     freezegun
     pytestCheckHook
     ukpostcodeparser
     validators
-  ]
-  ++ lib.optionals (pythonOlder "3.3") [ mock ]
-  ++ lib.optionals (pythonOlder "3.0") [ more-itertools ];
+  ];
 
   # avoid tests which import random2, an abandoned library
   pytestFlagsArray = [
     "--ignore=tests/providers/test_ssn.py"
   ];
-
-  propagatedBuildInputs = [
-    dateutil
-    six
-    text-unidecode
-  ];
-
-  postPatch = ''
-    substituteInPlace setup.py --replace "pytest>=3.8.0,<3.9" "pytest"
-  '';
+  pythonImportsCheck = [ "faker" ];
 
   meta = with lib; {
-    description = "A Python library for generating fake user data";
-    homepage    = "http://faker.rtfd.org";
-    license     = licenses.mit;
+    description = "Python library for generating fake user data";
+    homepage = "http://faker.rtfd.org";
+    license = licenses.mit;
     maintainers = with maintainers; [ lovek323 ];
-    platforms   = platforms.unix;
   };
 }