about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSamuel Leathers <sam@appliedtrust.com>2017-09-15 23:39:48 -0400
committerSamuel Leathers <sam@appliedtrust.com>2017-09-16 00:11:05 -0400
commit06e2b99546a9f741ca9be4b48faf3d6177591fd8 (patch)
treeb82877d442f557bb6742e50ebfcddebf893dd1bd
parentdfa4a56d6c98d4529c007fe681c88ea7fe076251 (diff)
downloadnixlib-06e2b99546a9f741ca9be4b48faf3d6177591fd8.tar
nixlib-06e2b99546a9f741ca9be4b48faf3d6177591fd8.tar.gz
nixlib-06e2b99546a9f741ca9be4b48faf3d6177591fd8.tar.bz2
nixlib-06e2b99546a9f741ca9be4b48faf3d6177591fd8.tar.lz
nixlib-06e2b99546a9f741ca9be4b48faf3d6177591fd8.tar.xz
nixlib-06e2b99546a9f741ca9be4b48faf3d6177591fd8.tar.zst
nixlib-06e2b99546a9f741ca9be4b48faf3d6177591fd8.zip
cccolutils: init at 1.5
-rw-r--r--pkgs/development/python-modules/cccolutils/default.nix22
-rw-r--r--pkgs/top-level/python-packages.nix2
2 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/cccolutils/default.nix b/pkgs/development/python-modules/cccolutils/default.nix
new file mode 100644
index 000000000000..edf7f0596c5f
--- /dev/null
+++ b/pkgs/development/python-modules/cccolutils/default.nix
@@ -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 ];
+  };
+}
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 3cdf02caa15c..ce3b10aa96a7 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -2576,6 +2576,8 @@ in {
     };
   };
 
+  cccolutils = callPackage ../development/python-modules/cccolutils/default.nix {};
+
   CDDB = buildPythonPackage rec {
     name = "CDDB-1.4";