python3Packages.pyjwt: disable failing test for 1.7.1

This commit is contained in:
Fabian Affolter 2021-05-10 08:13:19 +02:00
parent d9e8a89085
commit b56bd9afcc

View file

@ -29,6 +29,11 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTests = lib.optionals (lib.versionOlder version "2.0") [
# ecdsa changed internal behavior, required if one does 1.7.1 overriding
"ec_verify_should_return_false_if_signature_invalid"
];
pythonImportsCheck = [ "jwt" ];
meta = with lib; {