pythonPackages.pyjwt: does not need pytest 2.7

This commit is contained in:
Frederik Rietdijk 2016-12-01 12:34:57 +01:00
parent 49a313c395
commit d3f3ad3b26

View File

@ -20284,9 +20284,14 @@ in {
sha256 = "06vg84aicwkv0kli8i4jhg0kc6298cmh38ib058q01yxzk6q17gn";
};
buildInputs = with self; [ pytestrunner pytestcov pytest_27 coverage ];
buildInputs = with self; [ pytestrunner pytestcov pytest coverage ];
propagatedBuildInputs = with self; [ pycrypto ecdsa ];
# We don't need this specific version
postPatch = ''
substituteInPlace setup.py --replace "pytest==2.7.3" "pytest"
'';
meta = {
description = "JSON Web Token implementation in Python";
longDescription = "A Python implementation of JSON Web Token draft 01";