1{ lib, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "progressbar33";
5 version = "2.4";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "1zvf6zs5hzrc03p9nfs4p16vhilqikycvv1yk0pxn8s07fdhvzji";
10 };
11
12 # no tests implemented
13 doCheck = false;
14
15 meta = with lib; {
16 homepage = "https://pypi.python.org/pypi/progressbar33";
17 description = "Text progressbar library for python";
18 license = licenses.lgpl3Plus;
19 maintainers = with maintainers; [ twey ];
20 };
21}