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
|
||||
, nose
|
||||
, six
|
||||
, stdenv
|
||||
}:
|
||||
|
||||
|
||||
@ -18,9 +19,13 @@ buildPythonPackage rec {
|
||||
checkInputs = [ nose ];
|
||||
propagatedBuildInputs = [ six ];
|
||||
|
||||
# iterable = range(10 ** 10) # Is efficiently reversible
|
||||
# OverflowError: Python int too large to convert to C long
|
||||
doCheck = !stdenv.hostPlatform.is32bit;
|
||||
|
||||
meta = {
|
||||
homepage = https://more-itertools.readthedocs.org;
|
||||
description = "Expansion of the itertools module";
|
||||
license = lib.licenses.mit;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user