about summary refs log tree commit diff
path: root/pkgs/development/python-modules/faker
diff options
context:
space:
mode:
authorChris Ostrouchov <chris.ostrouchov@gmail.com>2018-11-29 13:25:48 -0500
committerFrederik Rietdijk <fridh@fridh.nl>2018-12-03 16:50:41 +0100
commitd39d85c0b22fabc7a71ed181312ce2cf8a1c026f (patch)
tree23c9b7894f701ab4121fd7ef393c60ff4a1b6f98 /pkgs/development/python-modules/faker
parent0ae8b4868c7e3386e19e20b8b9289a3d50ebaa1d (diff)
pythonPackages.faker: refactor remove pytest requirements
Diffstat (limited to 'pkgs/development/python-modules/faker')
-rw-r--r--pkgs/development/python-modules/faker/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/faker/default.nix b/pkgs/development/python-modules/faker/default.nix
index f11990a87b0dc..515bd9e99bb51 100644
--- a/pkgs/development/python-modules/faker/default.nix
+++ b/pkgs/development/python-modules/faker/default.nix
@@ -15,11 +15,11 @@ buildPythonPackage rec {
     sha256 = "8c6df7903c7b4a51f4ac273bc5fec79a249e3220c47b35d1ac1175b41982d772";
   };
 
+  buildInputs = [ pytestrunner ];
   checkInputs = [
     email_validator
     mock
     ukpostcodeparser
-    pytestrunner
     pytest
   ];
 
@@ -29,6 +29,10 @@ buildPythonPackage rec {
     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;