depot/third_party/nixpkgs/pkgs/development/python-modules/k5test/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

48 lines
958 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
findutils,
krb5-c,
pythonOlder,
setuptools,
substituteAll,
}:
buildPythonPackage rec {
pname = "k5test";
version = "0.10.4";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-4VJJHmYC9qk7PVM9OHvUWQ8kdgk7aEIXD/C5PeZL7zA=";
};
patches = [
(substituteAll {
src = ./fix-paths.patch;
inherit findutils;
krb5 = krb5-c;
# krb5-config is in dev output
krb5Dev = krb5-c.dev;
})
];
nativeBuildInputs = [ setuptools ];
# No tests
doCheck = false;
pythonImportsCheck = [ "k5test" ];
meta = with lib; {
description = "Library for setting up self-contained Kerberos 5 environment";
homepage = "https://github.com/pythongssapi/k5test";
changelog = "https://github.com/pythongssapi/k5test/releases/tag/v${version}";
license = licenses.mit;
maintainers = [ ];
};
}