From bcf736b325cbc577ed083995366396656e93e96c Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Thu, 22 Nov 2018 22:26:36 +0100 Subject: [PATCH] python: pyjwt: fix build --- 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 f7d3e32f992..b90e7cc425f 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 ]; meta = with lib; { description = "JSON Web Token implementation in Python";