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

Nick Cao 265d420f fb3e5408

Changed files
+7 -10
pkgs
development
python-modules
python-kadmin-rs
+7 -10
pkgs/development/python-modules/python-kadmin-rs/default.nix
···
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 = [
···
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
+
];
};
}