pythonPackages.more-itertools: avoid doCheck on i686
I expect noone will want to spend time really fixing these, but it blocks wine from building...
This commit is contained in:
parent
4134048b6f
commit
355f19653c
@ -3,6 +3,7 @@
|
|||||||
, fetchPypi
|
, fetchPypi
|
||||||
, nose
|
, nose
|
||||||
, six
|
, six
|
||||||
|
, stdenv
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
|
||||||
@ -18,9 +19,13 @@ buildPythonPackage rec {
|
|||||||
checkInputs = [ nose ];
|
checkInputs = [ nose ];
|
||||||
propagatedBuildInputs = [ six ];
|
propagatedBuildInputs = [ six ];
|
||||||
|
|
||||||
|
# iterable = range(10 ** 10) # Is efficiently reversible
|
||||||
|
# OverflowError: Python int too large to convert to C long
|
||||||
|
doCheck = !stdenv.hostPlatform.is32bit;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = https://more-itertools.readthedocs.org;
|
homepage = https://more-itertools.readthedocs.org;
|
||||||
description = "Expansion of the itertools module";
|
description = "Expansion of the itertools module";
|
||||||
license = lib.licenses.mit;
|
license = lib.licenses.mit;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user