1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "progressbar"; 5 version = "2.5"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "5d81cb529da2e223b53962afd6c8ca0f05c6670e40309a7219eacc36af9b6c63"; 10 }; 11 12 # invalid command 'test' 13 doCheck = false; 14 15 meta = with lib; { 16 homepage = "https://pypi.python.org/pypi/progressbar"; 17 description = "Text progressbar library for python"; 18 license = licenses.lgpl3Plus; 19 maintainers = with maintainers; [ domenkozar ]; 20 }; 21}