12 buildPythonPackage rec {
15 format = "setuptools";
16 disabled = pythonOlder "3.6";
18 src = fetchFromGitHub {
23 hash = "sha256-N1J8yBVX/O+92cRp+q2gA2cFsd+C7JjUR9jo0VGoINg=";
27 # pytest-flake8 is incompatible flake8 6.0.0 and currently unmaintained
28 substituteInPlace setup.cfg --replace "--flake8" ""
31 propagatedBuildInputs = [ cryptography ];
39 pythonImportsCheck = [ "jwt" ];
42 description = "JSON Web Token library for Python 3";
43 homepage = "https://github.com/GehirnInc/python-jwt";
44 license = licenses.asl20;
45 maintainers = with maintainers; [ thornycrackers ];