1{ lib, buildPythonPackage, fetchPypi, isPy3k }: 2 3buildPythonPackage rec { 4 pname = "progressbar231"; 5 version = "2.3.1"; 6 7 disabled = isPy3k; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "0j0ifxk87xz3wkyacxaiqygghn27wwz6y5pj9k8j2yq7n33fbdam"; 12 }; 13 14 # no tests implemented 15 doCheck = false; 16 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 }; 23}