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:
Vladimír Čunát 2018-09-01 15:08:53 +02:00
parent 4134048b6f
commit 355f19653c
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA

View File

@ -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;
};
}
}