nixpkgs/pkgs/development/python-modules/kanidm/default.nix
Yueh-Shun Li 91b3db1309 treewide: fix sourceRoot for fetchgit-based src
According to Nixpkgs manual[1] and NixOS 23.11 Release Note[2], the
`sourceRoot` attribute passed to `stdenv.mkDerivation` should be
specified as `"${src.name}"` or `"${src.name}/subdir"` when `src` is
produced using `fetchgit`-based fetchers.

`sourceRoot = "source"` or `sourceRoot = "source/subdir"` is based on
the assumption that the `name` attribute of these pre-unpacked fetchers
are always `"source"`, which is not the case. Expecting constant `name`
also makes the source FODs prone to irrelevent hashes during version
bumps.

[1]: https://nixos.org/manual/nixpkgs/unstable/#var-stdenv-sourceRoot
[2]: https://nixos.org/manual/nixos/stable/release-notes#sec-release-23.11
2024-03-09 07:53:25 +08:00

72 lines
1.1 KiB
Nix

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