From 213cca7628cc386d5b0ec8c2f12c7ddc9572dd42 Mon Sep 17 00:00:00 2001 From: Marc 'risson' Schmitt Date: Fri, 19 Sep 2025 16:48:15 +0200 Subject: [PATCH 1/2] python3Packages.python-kadmin-rs: 0.6.1 -> 0.6.2 Signed-off-by: Marc 'risson' Schmitt --- .../python-modules/python-kadmin-rs/default.nix | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/pkgs/development/python-modules/python-kadmin-rs/default.nix b/pkgs/development/python-modules/python-kadmin-rs/default.nix index c4f18d0f4e09..2faaef303eb4 100644 --- a/pkgs/development/python-modules/python-kadmin-rs/default.nix +++ b/pkgs/development/python-modules/python-kadmin-rs/default.nix @@ -17,25 +17,19 @@ buildPythonPackage rec { pname = "python-kadmin-rs"; - version = "0.6.1"; + version = "0.6.2"; pyproject = true; src = fetchFromGitHub { owner = "authentik-community"; repo = "kadmin-rs"; rev = "kadmin/version/${version}"; - hash = "sha256-FEOWsUQhLXU1xqaTLe6GKO1OYi5fVDyT1dowiAyzbGI="; + hash = "sha256-0YE9LGrc0qUhbNBEXqiaPZM5kwW1JkL+RHkDi16msog="; }; - postPatch = '' - # https://github.com/authentik-community/kadmin-rs/issues/213 - substituteInPlace kadmin-sys/build.rs \ - --replace-fail 'bindgen::builder()' 'bindgen::builder().allowlist_type("krb5_boolean")' - ''; - cargoDeps = rustPlatform.fetchCargoVendor { inherit src; - hash = "sha256-tvjwNfjMc8k4GK9rZXFG9CfcSlUW/B95YimLtH4iEbM="; + hash = "sha256-Cnn8C3Wdwl4ZS7mDKRxuK30lr2ympOcmqKPIL59RKxk="; }; buildInputs = [ From 8c33ed04ee9ab57ecec5399f746bbeb8d7845a46 Mon Sep 17 00:00:00 2001 From: Marc 'risson' Schmitt Date: Fri, 19 Sep 2025 16:49:05 +0200 Subject: [PATCH 2/2] python3Packages.python-kadmin-rs: add risson as maintainer Signed-off-by: Marc 'risson' Schmitt --- pkgs/development/python-modules/python-kadmin-rs/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/python-kadmin-rs/default.nix b/pkgs/development/python-modules/python-kadmin-rs/default.nix index 2faaef303eb4..5c45c36cd4ef 100644 --- a/pkgs/development/python-modules/python-kadmin-rs/default.nix +++ b/pkgs/development/python-modules/python-kadmin-rs/default.nix @@ -62,6 +62,9 @@ buildPythonPackage rec { homepage = "https://github.com/authentik-community/kadmin-rs"; changelog = "https://github.com/authentik-community/kadmin-rs/releases/tag/kadmin%2Fversion%2F${version}"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ jvanbruegge ]; + maintainers = with lib.maintainers; [ + jvanbruegge + risson + ]; }; }