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.
This commit is contained in:
43
pkgs/development/python-modules/k5test/default.nix
Normal file
43
pkgs/development/python-modules/k5test/default.nix
Normal file
@@ -0,0 +1,43 @@
|
||||
{ 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 = [ ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user