nixpkgs/pkgs/development/python-modules/k5test/default.nix
worldofpeace 9d973b3dc1 pythonPackages.k5test: init at 0.9.2
This was split out gssapi a while ago.
Needs an extensive fix-paths.patch since
it's reliant upon many shell tools.
2019-08-05 11:31:03 -04:00

44 lines
796 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, substituteAll
, six
, krb5Full
, findutils
, which
}:
buildPythonPackage rec {
pname = "k5test";
version = "0.9.2";
src = fetchPypi {
inherit pname version;
sha256 = "1lqp3jgfngyhaxjgj3n230hn90wsylwilh120yjf62h7b1s02mh8";
};
patches = [
(substituteAll {
src = ./fix-paths.patch;
inherit findutils krb5Full;
# krb5-config is in dev output
krb5FullDev = krb5Full.dev;
which = "${which}/bin/which";
})
];
propagatedBuildInputs = [
six
];
# No tests
doCheck = false;
meta = with lib; {
description = "Library for setting up self-contained Kerberos 5 environment";
homepage = https://github.com/pythongssapi/k5test;
license = licenses.mit;
maintainers = [ ];
};
}