Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / nose_progressive / default.nix
blobbef7058bc3fe4790d322cde8391b43d20d18dc24
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , nose
5 , pillow
6 , blessings
7 , isPy3k
8 }:
10 buildPythonPackage rec {
11   pname = "nose-progressive";
12   version = "1.5.2";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "1mzmgq0wnfizmg9m2wn0c9g9282rdgv1jnphp8ww5h8kwqrjhvis";
17   };
19   buildInputs = [ nose ];
20   propagatedBuildInputs = [ pillow blessings ];
22   # fails with obscure error
23   doCheck = !isPy3k;
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   };