about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/kanidm/default.nix
blob: eb60f61d5f3c97e7cff8285e6adbb79cf980b18e (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
{ lib
, buildPythonPackage
, fetchPypi
, fetchpatch
, pythonOlder

# build
, poetry-core

# propagates
, aiohttp
, pydantic
, toml

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

let
  pname = "kanidm";
  version = "0.0.3";
in
buildPythonPackage {
  inherit pname version;
  format = "pyproject";

  disabled = pythonOlder "3.8";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-sTkAKxtJa7CVYKuXC//eMmf3l8ABsrEr2mdf1r2Gf9A=";
  };

  nativeBuildInputs = [
    poetry-core
  ];

  propagatedBuildInputs = [
    aiohttp
    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 ];
  };
}