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