chore(k-radius): ensure same kanidm version

This commit is contained in:
catvayor 2025-03-31 15:39:18 +02:00 committed by HT Chores
parent b2e0e7bac8
commit 63ab01e919

View file

@ -5,26 +5,18 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
aiohttp,
authlib,
kanidm,
pydantic,
toml,
}:
buildPythonPackage rec {
pname = "kanidm";
version = "1.1.0-rc.16";
buildPythonPackage {
inherit (kanidm) pname version src;
pyproject = true;
src = fetchFromGitHub {
owner = "kanidm";
repo = "kanidm";
rev = "v${version}";
hash = "sha256-NH9V5KKI9LAtJ2/WuWtUJUzkjVMfO7Q5NQkK7Ys2olU=";
};
patches = [
./02-remove-noisy-logs.patch
];