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-12-07 15:31:52 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2018-12-07 15:31:52 +0100
commit747aa4cc93252dd668d62aa9cbbb27eeb50fc5c6 (patch)
tree67610c7dafa8cde278c7bc4816de213fdf16807e /pkgs/development/python-modules/pyjwt
parent4deb04a97ab1cca77f24057d2f6ee9273091316c (diff)
parent12e8ec041a28abd8c5cabd2c9e873df89e41b571 (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 835d1233f5ff3..065cae45929a3 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_37 }:
+, pytestrunner, pytestcov, pytest }:
 
 buildPythonPackage rec {
   pname = "PyJWT";
@@ -13,7 +13,7 @@ buildPythonPackage rec {
 
   propagatedBuildInputs = [ cryptography ecdsa ];
 
-  checkInputs = [ pytestrunner pytestcov pytest_37 ];
+  checkInputs = [ pytestrunner pytestcov pytest ];
 
   # pytest 3.9.0 changed behavior of deprecated_call, see release notes
   postPatch = ''