13 # optional-dependencies
22 buildPythonPackage rec {
23 pname = "python-jose";
27 src = fetchFromGitHub {
31 hash = "sha256-6VGC6M5oyGCOiXcYp6mpyhL+JlcYZKIqOQU9Sm/TkKM=";
35 substituteInPlace setup.py \
36 --replace '"pytest-runner",' ""
43 propagatedBuildInputs = [
49 passthru.optional-dependencies = {
61 pythonImportsCheck = [
67 ] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
70 changelog = "https://github.com/mpdavis/python-jose/releases/tag/${version}";
71 homepage = "https://github.com/mpdavis/python-jose";
72 description = "A JOSE implementation in Python";
73 license = licenses.mit;
74 maintainers = with maintainers; [ jhhuh ];