python3Packages.cccolutils: disambiguate krb5

PyPI also has a package called krb5 and this package wants the
system krb5, not the PyPI one.
This commit is contained in:
Elliot Cameron 2024-08-07 13:50:29 -04:00
parent cd7aa8d584
commit a1fd7ef9ae
2 changed files with 5 additions and 3 deletions

View File

@ -4,7 +4,7 @@
fetchPypi,
git,
gitpython,
krb5,
krb5-c, # C krb5 library, not PyPI krb5
mock,
pytestCheckHook,
pythonOlder,
@ -23,7 +23,7 @@ buildPythonPackage rec {
hash = "sha256-YzKjG43biRbTZKtzSUHHhtzOfcZfzISHDFolqzrBjL8=";
};
buildInputs = [ krb5 ];
buildInputs = [ krb5-c ];
propagatedBuildInputs = [
git

View File

@ -2031,7 +2031,9 @@ self: super: with self; {
cbor = callPackage ../development/python-modules/cbor { };
cccolutils = callPackage ../development/python-modules/cccolutils { };
cccolutils = callPackage ../development/python-modules/cccolutils {
krb5-c = pkgs.krb5;
};
cdcs = callPackage ../development/python-modules/cdcs { };