diff --git a/pkgs/development/python-modules/pyjwt/default.nix b/pkgs/development/python-modules/pyjwt/default.nix index a3a770a0da5..94a1a4e6b0e 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 = ''