cccolutils: init at 1.5

This commit is contained in:
Samuel Leathers 2017-09-15 23:39:48 -04:00
parent dfa4a56d6c
commit 06e2b99546
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ stdenv, buildPythonPackage, fetchPypi, krb5Full, nose, GitPython, mock, git }:
buildPythonPackage rec {
pname = "CCColUtils";
version = "1.5";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "1gwcq4xan9as1j3q9k2zqrywxp46qx0ljwxbck9id2fvilds6ck3";
};
buildInputs = [ krb5Full ];
propagatedBuildInputs = [ nose GitPython mock git ];
doCheck = false;
meta = with stdenv.lib; {
description = "Python Kerberos 5 Credential Cache Collection Utilities";
homepage = https://pagure.io/cccolutils;
license = licenses.gpl2;
maintainers = with maintainers; [ disassembler ];
};
}

View File

@ -2576,6 +2576,8 @@ in {
};
};
cccolutils = callPackage ../development/python-modules/cccolutils/default.nix {};
CDDB = buildPythonPackage rec {
name = "CDDB-1.4";