depot/third_party/nixpkgs/pkgs/development/python-modules/authlib/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

70 lines
1.3 KiB
Nix

{
lib,
buildPythonPackage,
cachelib,
cryptography,
fetchFromGitHub,
flask,
flask-sqlalchemy,
httpx,
mock,
pytest-asyncio,
pytestCheckHook,
pythonOlder,
requests,
setuptools,
starlette,
werkzeug,
}:
buildPythonPackage rec {
pname = "authlib";
version = "1.3.2";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "lepture";
repo = "authlib";
rev = "refs/tags/v${version}";
hash = "sha256-gaFnai5QzHhnyn73JB+QzybaolLWC9barBFdnlEMyMU=";
};
build-system = [ setuptools ];
dependencies = [
cryptography
];
nativeCheckInputs = [
cachelib
flask
flask-sqlalchemy
httpx
mock
pytest-asyncio
pytestCheckHook
requests
starlette
werkzeug
];
pythonImportsCheck = [ "authlib" ];
disabledTestPaths = [
# Django tests require a running instance
"tests/django/"
"tests/clients/test_django/"
# Unsupported encryption algorithm
"tests/jose/test_chacha20.py"
];
meta = with lib; {
description = "Library for building OAuth and OpenID Connect servers";
homepage = "https://github.com/lepture/authlib";
changelog = "https://github.com/lepture/authlib/blob/v${version}/docs/changelog.rst";
license = licenses.bsd3;
maintainers = with maintainers; [ flokli ];
};
}