ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / cccolutils / default.nix
blobe231624e40f8f8990ec50199785d60aed4661130
1 { lib, buildPythonPackage, fetchPypi, isPy3k, krb5Full, nose, GitPython, mock, git }:
3 buildPythonPackage rec {
4   pname = "CCColUtils";
5   version = "1.5";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "1gwcq4xan9as1j3q9k2zqrywxp46qx0ljwxbck9id2fvilds6ck3";
10   };
12   buildInputs = [ krb5Full ];
13   propagatedBuildInputs = [ nose GitPython mock git ];
15   doCheck = isPy3k; # needs unpackaged module to run tests on python2
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   };