blob: 28a2313cf548b844e9bb1e80a8063f575d7d23b7 (
plain)
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
poetry-core,
# propagates
django,
scim2-filter-parser,
# tests
mock,
pytest-django,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "django-scim2";
version = "0.20.0";
pyproject = true;
src = fetchFromGitHub {
owner = "15five";
repo = "django-scim2";
tag = version;
hash = "sha256-OsfC6Jc/oQl6nzy3Nr3vkY+XicRxUoV62hK8MHa3LJ8=";
};
build-system = [ poetry-core ];
dependencies = [
django
scim2-filter-parser
];
pythonImportsCheck = [ "django_scim" ];
nativeCheckInputs = [
mock
pytest-django
pytestCheckHook
];
meta = {
changelog = "https://github.com/15five/django-scim2/blob/${src.tag}/CHANGES.txt";
description = "SCIM 2.0 Service Provider Implementation (for Django)";
homepage = "https://github.com/15five/django-scim2";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ s1341 ];
};
}
|