12 buildPythonPackage rec {
17 disabled = pythonOlder "3.7";
22 hash = "sha256-V+KNFW49XBAIjgxoq7kL+sPfgrQKcb0NqiDGXM1cI94=";
26 sed -i '/types-cryptography/d' setup.cfg
40 passthru.optional-dependencies.crypto = [
46 ] ++ (lib.flatten (lib.attrValues passthru.optional-dependencies));
49 # requires internet connection
50 "test_get_jwt_set_sslcontext_default"
53 pythonImportsCheck = [ "jwt" ];
56 changelog = "https://github.com/jpadilla/pyjwt/blob/${version}/CHANGELOG.rst";
57 description = "JSON Web Token implementation in Python";
58 homepage = "https://github.com/jpadilla/pyjwt";
59 license = licenses.mit;
60 maintainers = with maintainers; [ prikhi ];