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