about summary refs log tree commit diff
path: root/pkgs/development/python-modules/requests-mock
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2020-06-11 14:43:01 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2020-06-11 14:43:01 +0200
commit31e1a8b002c8f1f296da7eff887433febd430d27 (patch)
treee076b16cf3b7576e824e00003d4e4e97f7b2f0d9 /pkgs/development/python-modules/requests-mock
parent271b696d931c369118dbfd2d28c20faeeb337b6a (diff)
python.pkgs.requests-mock: fix build
Diffstat (limited to 'pkgs/development/python-modules/requests-mock')
-rw-r--r--pkgs/development/python-modules/requests-mock/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/requests-mock/default.nix b/pkgs/development/python-modules/requests-mock/default.nix
index 9a08480827dc1..5e85ba7d38bdb 100644
--- a/pkgs/development/python-modules/requests-mock/default.nix
+++ b/pkgs/development/python-modules/requests-mock/default.nix
@@ -5,6 +5,7 @@
 , six
 , testrepository
 , testtools
+, pytest
 }:
 
 buildPythonPackage rec {
@@ -22,7 +23,7 @@ buildPythonPackage rec {
 
   propagatedBuildInputs = [ requests six ];
 
-  checkInputs = [ mock purl testrepository testtools ];
+  checkInputs = [ mock purl testrepository testtools pytest ];
 
   meta = with lib; {
     description = "Mock out responses from the requests package";