From 4361e506153375c7dd89757796443b8da42d49e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tor=20Hedin=20Br=C3=B8nner?= Date: Tue, 4 Dec 2018 16:43:01 +0100 Subject: [PATCH] Revert "python: pyjwt: fix build" This reverts commit bcf736b325cbc577ed083995366396656e93e96c. 28cdb6e841b9098517c2a7957454437387ca887d fixed the issue with pytest-3.9.0. --- pkgs/development/python-modules/pyjwt/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pyjwt/default.nix b/pkgs/development/python-modules/pyjwt/default.nix index a3a770a0da53..94a1a4e6b0e2 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 = ''