fixup! python3Packages.krb5: 0.9.0 -> 0.10.0

This commit is contained in:
Fabian Affolter
2026-08-25 22:59:09 +02:00
parent 368b4e3e8f
commit ec24eed6be

View File

@@ -10,19 +10,19 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "krb5";
version = "0.10.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
inherit (finalAttrs) pname version;
hash = "sha256-j0cRoKsR7kP9pWc3HvbZSHr9vU8VbKCT6Pswb0zGha4=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "Cython ==" "Cython >="
--replace-fail "Cython == 3.3.0" "Cython"
'';
build-system = [
@@ -40,9 +40,9 @@ buildPythonPackage rec {
pythonImportsCheck = [ "krb5" ];
meta = {
changelog = "https://github.com/jborean93/pykrb5/blob/v${version}/CHANGELOG.md";
description = "Kerberos API bindings for Python";
homepage = "https://github.com/jborean93/pykrb5";
changelog = "https://github.com/jborean93/pykrb5/blob/v${finalAttrs.version}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
de11n
@@ -50,4 +50,4 @@ buildPythonPackage rec {
];
broken = stdenv.hostPlatform.isDarwin; # TODO: figure out how to build on Darwin
};
}
})