1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
{
lib,
buildPythonPackage,
fetchFromGitLab,
setuptools,
setuptools-scm,
click,
python-keycloak,
python-jose,
pyyaml,
swh-core,
aiocache,
httpx,
pytestCheckHook,
pytest-django,
pytest-mock,
djangorestframework,
starlette,
}:
buildPythonPackage rec {
pname = "swh-auth";
version = "0.10.0";
pyproject = true;
src = fetchFromGitLab {
domain = "gitlab.softwareheritage.org";
group = "swh";
owner = "devel";
repo = "swh-auth";
tag = "v${version}";
hash = "sha256-8ctd5D7zT66oVNZlvRIs8pN7Fe2BhTgC+S9p1HBDO9E=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [
click
python-keycloak
python-jose
pyyaml
swh-core
];
pythonImportsCheck = [ "swh.auth" ];
nativeCheckInputs = [
aiocache
djangorestframework
httpx
pytestCheckHook
pytest-django
pytest-mock
starlette
];
meta = {
description = "Set of utility libraries related to user authentication in applications and services based on the use of Keycloak and OpenID Connect";
homepage = "https://gitlab.softwareheritage.org/swh/devel/swh-auth";
license = lib.licenses.gpl3Only;
maintainers = [ ];
};
}
|