python.pkgs.pykerberos: put krb5 in buildInputs too

For the relevant discussion see
https://github.com/NixOS/nixpkgs/pull/55757#issuecomment-469397261
This commit is contained in:
Robert Schütz 2019-03-05 08:48:29 +01:00
parent 37d2f71e2f
commit 82b38923c2

View File

@ -9,7 +9,9 @@ buildPythonPackage rec {
sha256 = "0v47p840myqgc7hr4lir72xshcfpa0w8j9n077h3njpqyn6wlbag";
};
nativeBuildInputs = [ krb5 ];
nativeBuildInputs = [ krb5 ]; # for krb5-config
buildInputs = [ krb5 ];
# there are no tests
doCheck = false;