159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
64 lines
1.2 KiB
Nix
64 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
cryptography,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
sphinxHook,
|
|
sphinx-rtd-theme,
|
|
zope-interface,
|
|
oauthlib,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyjwt";
|
|
version = "2.9.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jpadilla";
|
|
repo = "pyjwt";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-z1sqaSeign0ZDFcg94cli0fIVBxcK14VUlgP+mSaxRA=";
|
|
};
|
|
|
|
outputs = [
|
|
"out"
|
|
"doc"
|
|
];
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
nativeBuildInputs = [
|
|
sphinxHook
|
|
sphinx-rtd-theme
|
|
zope-interface
|
|
];
|
|
|
|
optional-dependencies.crypto = [ cryptography ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ] ++ (lib.flatten (lib.attrValues optional-dependencies));
|
|
|
|
disabledTests = [
|
|
# requires internet connection
|
|
"test_get_jwt_set_sslcontext_default"
|
|
];
|
|
|
|
pythonImportsCheck = [ "jwt" ];
|
|
|
|
passthru.tests = {
|
|
inherit oauthlib;
|
|
};
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/jpadilla/pyjwt/blob/${version}/CHANGELOG.rst";
|
|
description = "JSON Web Token implementation in Python";
|
|
homepage = "https://github.com/jpadilla/pyjwt";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ prikhi ];
|
|
};
|
|
}
|