about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/kanidm/default.nix
blob: 88b98a1b5e797342d3d55ca7580c712c5956a550 (plain) (blame)
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
67
68
69
70
71
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder

# build
, poetry-core

# propagates
, aiohttp
, authlib
, pydantic
, toml

# tests
, pytest-asyncio
, pytest-mock
, pytestCheckHook
}:

let
  pname = "kanidm";
  version = "0.0.3-unstable-2023-08-23";
in
buildPythonPackage rec {
  inherit pname version;
  pyproject = true;

  disabled = pythonOlder "3.9";

  src = fetchFromGitHub {
    owner = "kanidm";
    repo = "kanidm";
    rev = "def4420c4c5c3ec4f9b02776e1d5fdb07aa3a729";
    hash = "sha256-5qQb+Itguw2v1Wdvc2vp00zglfvNd3LFEDvaweRJcOc=";
  };

  sourceRoot = "${src.name}/pykanidm";

  nativeBuildInputs = [
    poetry-core
  ];

  propagatedBuildInputs = [
    aiohttp
    authlib
    pydantic
    toml
  ];

  nativeCheckInputs = [
    pytest-asyncio
    pytest-mock
    pytestCheckHook
  ];

  pytestFlagsArray = [
    "-m 'not network'"
  ];

  pythonImportsCheck = [
    "kanidm"
  ];

  meta = with lib; {
    description = "Kanidm client library";
    homepage = "https://github.com/kanidm/kanidm/tree/master/pykanidm";
    license = licenses.mpl20;
    maintainers = with maintainers; [ arianvp hexa ];
  };
}