linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / progressbar231 / default.nix
blobd421efde8aa10dcb12e27cbb8090ebdd5bf53433
1 { lib, buildPythonPackage, fetchPypi, isPy3k }:
3 buildPythonPackage rec {
4   pname = "progressbar231";
5   version = "2.3.1";
7   disabled = isPy3k;
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "0j0ifxk87xz3wkyacxaiqygghn27wwz6y5pj9k8j2yq7n33fbdam";
12   };
14   # no tests implemented
15   doCheck = false;
17   meta = with lib; {
18     homepage = "https://pypi.python.org/pypi/progressbar231";
19     description = "Text progressbar library for python";
20     license = licenses.lgpl3Plus;
21     maintainers = with maintainers; [ twey ];
22   };