nixpkgs/pkgs/development/python-modules/progressbar231/default.nix
2021-01-25 18:31:47 +01:00

24 lines
540 B
Nix

{ lib, 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 lib; {
homepage = "https://pypi.python.org/pypi/progressbar231";
description = "Text progressbar library for python";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ twey ];
};
}