pythonPackages.progressbar33: init at 2.4

This commit is contained in:
James Kay 2018-04-10 12:31:22 +01:00
parent 8c6d838853
commit 10863b0aa3
No known key found for this signature in database
GPG Key ID: 76BE7F17BF11AD15
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "progressbar33";
version = "2.4";
src = fetchPypi {
inherit pname version;
sha256 = "1zvf6zs5hzrc03p9nfs4p16vhilqikycvv1yk0pxn8s07fdhvzji";
};
# no tests implemented
doCheck = false;
meta = with stdenv.lib; {
homepage = https://pypi.python.org/pypi/progressbar33;
description = "Text progressbar library for python";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ twey ];
};
}

View File

@ -11482,6 +11482,8 @@ in {
progressbar231 = callPackage ../development/python-modules/progressbar231 { };
progressbar33 = callPackage ../development/python-modules/progressbar33 { };
ldap = callPackage ../development/python-modules/ldap {
inherit (pkgs) openldap cyrus_sasl;
};