1{ lib, buildPythonPackage, fetchPypi, isPy3k, krb5Full, nose, GitPython, mock, git }:
2
3buildPythonPackage rec {
4 pname = "CCColUtils";
5 version = "1.5";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "1gwcq4xan9as1j3q9k2zqrywxp46qx0ljwxbck9id2fvilds6ck3";
10 };
11
12 buildInputs = [ krb5Full ];
13 propagatedBuildInputs = [ nose GitPython mock git ];
14
15 doCheck = isPy3k; # needs unpackaged module to run tests on python2
16
17 meta = with lib; {
18 description = "Python Kerberos 5 Credential Cache Collection Utilities";
19 homepage = "https://pagure.io/cccolutils";
20 license = licenses.gpl2;
21 maintainers = with maintainers; [ disassembler ];
22 };
23}