1{ stdenv 2, lib 3, buildPythonPackage 4, fetchPypi 5, nose 6, pillow 7, blessings 8, isPy3k 9}: 10 11buildPythonPackage rec { 12 pname = "nose-progressive"; 13 version = "1.5.2"; 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "1mzmgq0wnfizmg9m2wn0c9g9282rdgv1jnphp8ww5h8kwqrjhvis"; 18 }; 19 20 buildInputs = [ nose ]; 21 propagatedBuildInputs = [ pillow blessings ]; 22 23 # fails with obscure error 24 doCheck = !isPy3k; 25 26 meta = with lib; { 27 homepage = "https://github.com/erikrose/nose-progressive"; 28 description = "A testrunner with a progress bar and smarter tracebacks"; 29 license = licenses.mit; 30 maintainers = with maintainers; [ domenkozar ]; 31 broken = true; # relies on 2to3 conversion, which was removed from setuptools>=58.0 32 }; 33 34}