Skip to content

Commit

Permalink
pythonPackages.more-itertools: avoid doCheck on i686
Browse files Browse the repository at this point in the history
I expect noone will want to spend time really fixing these,
but it blocks wine from building...
  • Loading branch information
vcunat committed Sep 1, 2018
1 parent 4134048 commit 355f196
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pkgs/development/python-modules/more-itertools/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
, fetchPypi
, nose
, six
, stdenv
}:


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

1 comment on commit 355f196

@vcunat
Copy link
Member Author

@vcunat vcunat commented on 355f196 Sep 1, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/cc @FRidh, just in case you wanted to do something better about it.

Please sign in to comment.