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