2018-12-07 13:52:07 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, isPy27, nose, six, colorama, termstyle }:
|
2018-02-19 19:33:06 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "rednose";
|
|
|
|
version = "1.3.0";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "6da77917788be277b70259edc0bb92fc6f28fe268b765b4ea88206cc3543a3e1";
|
|
|
|
};
|
|
|
|
|
|
|
|
prePatch = ''
|
|
|
|
substituteInPlace setup.py --replace "six==1.10.0" "six>=1.10.0"
|
|
|
|
'';
|
|
|
|
|
2019-05-02 20:10:52 +02:00
|
|
|
# Do not test on Python 2 because the tests suite gets stuck
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/60786
|
|
|
|
doCheck = !(isPy27);
|
2018-12-07 13:52:07 +01:00
|
|
|
|
2018-02-19 19:33:06 +01:00
|
|
|
checkInputs = [ six ];
|
|
|
|
propagatedBuildInputs = [ nose colorama termstyle ];
|
|
|
|
|
2018-12-07 13:52:07 +01:00
|
|
|
meta = with stdenv.lib; {
|
2018-02-19 19:33:06 +01:00
|
|
|
description = "A python nose plugin adding color to console results";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/JBKahn/rednose";
|
2018-02-19 19:33:06 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|