mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
cccolutils: init at 1.5
This commit is contained in:
parent
dfa4a56d6c
commit
06e2b99546
22
pkgs/development/python-modules/cccolutils/default.nix
Normal file
22
pkgs/development/python-modules/cccolutils/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -2576,6 +2576,8 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
cccolutils = callPackage ../development/python-modules/cccolutils/default.nix {};
|
||||
|
||||
CDDB = buildPythonPackage rec {
|
||||
name = "CDDB-1.4";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user