ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / nose_progressive / default.nix
blobfb9a8e61bdae438c5e97e724409adc33dc2a521b
1 { stdenv
2 , lib
3 , buildPythonPackage
4 , fetchPypi
5 , nose
6 , pillow
7 , blessings
8 , isPy3k
9 }:
11 buildPythonPackage rec {
12   pname = "nose-progressive";
13   version = "1.5.2";
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "1mzmgq0wnfizmg9m2wn0c9g9282rdgv1jnphp8ww5h8kwqrjhvis";
18   };
20   buildInputs = [ nose ];
21   propagatedBuildInputs = [ pillow blessings ];
23   # fails with obscure error
24   doCheck = !isPy3k;
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   };