rednose: init at 1.2.1

This commit is contained in:
Peter Marheine 2017-03-31 02:01:14 +00:00 committed by Frederik Rietdijk
parent c1cbae5a1e
commit fa7e942f98

View file

@ -22323,6 +22323,23 @@ in {
};
};
rednose = buildPythonPackage rec {
name = "rednose-${version}";
version = "1.2.1";
src = pkgs.fetchurl {
url = "mirror://pypi/r/rednose/${name}.tar.gz";
sha256 = "0b0bsna217lr1nykyhl5fgjly15zhdvqd4prg4wy1zrgfv7al6m0";
};
meta = {
description = "A python nose plugin adding color to console results.";
};
buildInputs = with self; [ nose six ];
propagatedBuildInputs = with self; [ colorama termstyle ];
};
reikna = callPackage ../development/python-modules/reikna { };
repocheck = buildPythonPackage rec {