python3Packages.python-kadmin-rs: 0.6.1 -> 0.6.2 (#444364)

This commit is contained in:
Nick Cao
2025-09-21 15:33:55 +00:00
committed by GitHub
@@ -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 = [
@@ -68,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
];
};
}