about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/progressbar231/default.nix
blob: 5271912cc0ad59f61d6820191d6be54b1df618af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 ];
  };
}