nixpkgs/pkgs/development/python-modules/kanidm/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

67 lines
986 B
Nix

{ 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 ];
};
}