pythonPackages.pyjwt: fix tests

This commit is contained in:
Jonathan Ringer 2019-10-16 23:16:09 -07:00 committed by Frederik Rietdijk
parent 7eed62d51d
commit 5cc8fdb5d7

@ -19,6 +19,11 @@ buildPythonPackage rec {
substituteInPlace setup.py --replace "pytest>=4.0.1,<5.0.0" "pytest"
'';
# ecdsa changed internal behavior
checkPhase = ''
pytest tests -k 'not ec_verify_should_return_false_if_signature_invalid'
'';
meta = with lib; {
description = "JSON Web Token implementation in Python";
homepage = https://github.com/jpadilla/pyjwt;