2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, isPy3k, krb5Full, nose, GitPython, mock, git }:
|
2017-09-16 04:39:48 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "CCColUtils";
|
|
|
|
version = "1.5";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "1gwcq4xan9as1j3q9k2zqrywxp46qx0ljwxbck9id2fvilds6ck3";
|
|
|
|
};
|
2017-12-25 19:08:10 +00:00
|
|
|
|
2017-09-16 04:39:48 +01:00
|
|
|
buildInputs = [ krb5Full ];
|
|
|
|
propagatedBuildInputs = [ nose GitPython mock git ];
|
2017-12-25 19:08:10 +00:00
|
|
|
|
|
|
|
doCheck = isPy3k; # needs unpackaged module to run tests on python2
|
2017-09-16 04:39:48 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-09-16 04:39:48 +01:00
|
|
|
description = "Python Kerberos 5 Credential Cache Collection Utilities";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://pagure.io/cccolutils";
|
2017-09-16 04:39:48 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ disassembler ];
|
|
|
|
};
|
|
|
|
}
|