{ lib , buildPythonPackage , fetchPypi , nose , six , stdenv }: buildPythonPackage rec { pname = "more-itertools"; version = "7.2.0"; src = fetchPypi { inherit pname version; sha256 = "409cd48d4db7052af495b09dec721011634af3753ae1ef92d2b32f73a745f832"; }; 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; }; }