chore(k-radius): ensure same kanidm version

This commit is contained in:
catvayor 2025-03-31 15:39:18 +02:00 committed by thubrecht
parent dc759d84c1
commit da27885108

View file

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