11 buildPythonPackage rec {
12 pname = "more-itertools";
17 inherit pname version;
18 hash = "sha256-5dk+9BEiT7zvNmpujdxMV4G8Y1nUNBKmXdWWTkYRFGM=";
21 nativeBuildInputs = [ flit-core ];
23 propagatedBuildInputs = [ six ];
25 nativeCheckInputs = [ pytestCheckHook ];
27 # iterable = range(10 ** 10) # Is efficiently reversible
28 # OverflowError: Python int too large to convert to C long
29 doCheck = !stdenv.hostPlatform.is32bit;
32 homepage = "https://more-itertools.readthedocs.org";
33 changelog = "https://more-itertools.readthedocs.io/en/stable/versions.html";
34 description = "Expansion of the itertools module";
35 license = licenses.mit;