pythonPackages.pyjwt: remove pytest constraints

This commit is contained in:
Frederik Rietdijk 2019-08-18 11:00:56 +02:00
parent 57ef737629
commit fb1be839e4

View File

@ -15,6 +15,10 @@ buildPythonPackage rec {
checkInputs = [ pytestrunner pytestcov pytest ];
postPatch = ''
substituteInPlace setup.py --replace "pytest>=4.0.1,<5.0.0" "pytest"
'';
meta = with lib; {
description = "JSON Web Token implementation in Python";
homepage = https://github.com/jpadilla/pyjwt;