mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +00:00
33afbf39f6
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.
67 lines
986 B
Nix
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 ];
|
|
};
|
|
}
|