about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyjwt
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-11-24 10:44:50 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2018-11-24 10:44:50 +0100
commitc1792242ef5ee4f9550c029231bf6e5956078b51 (patch)
treeefa090a6bab24eb332c7141b12b23142a64e114e /pkgs/development/python-modules/pyjwt
parent28cdb6e841b9098517c2a7957454437387ca887d (diff)
parente41154d1abcbcd1b9a0f542e590c63a210ea4266 (diff)
Merge staging-next into staging
Diffstat (limited to 'pkgs/development/python-modules/pyjwt')
-rw-r--r--pkgs/development/python-modules/pyjwt/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/pyjwt/default.nix b/pkgs/development/python-modules/pyjwt/default.nix
index 94a1a4e6b0e2d..a3a770a0da530 100644
--- a/pkgs/development/python-modules/pyjwt/default.nix
+++ b/pkgs/development/python-modules/pyjwt/default.nix
@@ -1,6 +1,6 @@
 { lib, buildPythonPackage, fetchPypi
 , cryptography, ecdsa
-, pytestrunner, pytestcov, pytest }:
+, pytestrunner, pytestcov, pytest_37 }:
 
 buildPythonPackage rec {
   pname = "PyJWT";
@@ -13,7 +13,7 @@ buildPythonPackage rec {
 
   propagatedBuildInputs = [ cryptography ecdsa ];
 
-  checkInputs = [ pytestrunner pytestcov pytest ];
+  checkInputs = [ pytestrunner pytestcov pytest_37 ];
 
   # pytest 3.9.0 changed behavior of deprecated_call, see release notes
   postPatch = ''