lol

python310Packages.pyjwt: 2.7.0 -> 2.8.0

Changelog: https://github.com/jpadilla/pyjwt/blob/2.8.0/CHANGELOG.rst

authored by

Sandro Jäckel and committed by
Martin Weinelt
9ccbaee2 43c94158

+7 -2
+7 -2
pkgs/development/python-modules/pyjwt/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "pyjwt"; 14 - version = "2.7.0"; 14 + version = "2.8.0"; 15 15 format = "pyproject"; 16 16 17 17 disabled = pythonOlder "3.7"; ··· 19 19 src = fetchPypi { 20 20 pname = "PyJWT"; 21 21 inherit version; 22 - hash = "sha256-vWyko8QoXBotQ0nloDX9+PuU4EzND8vmuiidrpzD4HQ="; 22 + hash = "sha256-V+KNFW49XBAIjgxoq7kL+sPfgrQKcb0NqiDGXM1cI94="; 23 23 }; 24 24 25 25 postPatch = '' ··· 44 44 nativeCheckInputs = [ 45 45 pytestCheckHook 46 46 ] ++ (lib.flatten (lib.attrValues passthru.optional-dependencies)); 47 + 48 + disabledTests = [ 49 + # requires internet connection 50 + "test_get_jwt_set_sslcontext_default" 51 + ]; 47 52 48 53 pythonImportsCheck = [ "jwt" ]; 49 54