pythonPackages.progressbar231: init at 2.3.1

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

View file

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

View file

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