mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
Merge pull request #51657 from marsam/fix-python-rednose-build
python2Packages.rednose: fix build on darwin
This commit is contained in:
commit
59b6fe36f5
@ -1,4 +1,4 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, nose, six, colorama, termstyle }:
|
||||
{ stdenv, buildPythonPackage, fetchPypi, isPy27, nose, six, colorama, termstyle }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "rednose";
|
||||
@ -13,10 +13,14 @@ buildPythonPackage rec {
|
||||
substituteInPlace setup.py --replace "six==1.10.0" "six>=1.10.0"
|
||||
'';
|
||||
|
||||
# Do not test on Python 2 darwin because the tests suite gets stuck
|
||||
# https://github.com/JBKahn/rednose/issues/23
|
||||
doCheck = !(stdenv.isDarwin && isPy27);
|
||||
|
||||
checkInputs = [ six ];
|
||||
propagatedBuildInputs = [ nose colorama termstyle ];
|
||||
|
||||
meta = with lib; {
|
||||
meta = with stdenv.lib; {
|
||||
description = "A python nose plugin adding color to console results";
|
||||
homepage = https://github.com/JBKahn/rednose;
|
||||
license = licenses.mit;
|
||||
|
Loading…
Reference in New Issue
Block a user