summary refs log tree commit diff
path: root/pkgs/development/python-modules/progressbar33/default.nix
blob: 0b53b83f5cca9e74259fc99c7c618fe1d6fc31ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, stdenv, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "progressbar33";
  version = "2.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1zvf6zs5hzrc03p9nfs4p16vhilqikycvv1yk0pxn8s07fdhvzji";
  };

  # no tests implemented
  doCheck = false;

  meta = with lib; {
    homepage = "https://pypi.python.org/pypi/progressbar33";
    description = "Text progressbar library for python";
    license = licenses.lgpl3Plus;
    maintainers = with maintainers; [ twey ];
  };
}