python312Packages.jax: 0.4.38 -> 0.5.0 (#374810)
[NixPkgs.git] / pkgs / development / python2-modules / more-itertools / default.nix
blobae2d5f7235642a5b2a1020643f1592e1d7079c4d
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   unittestCheckHook,
6   six,
7   stdenv,
8 }:
10 buildPythonPackage rec {
11   pname = "more-itertools";
12   version = "5.0.0";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "38a936c0a6d98a38bcc2d03fdaaedaba9f412879461dd2ceff8d37564d6522e4";
17   };
19   nativeCheckInputs = [ unittestCheckHook ];
20   propagatedBuildInputs = [ six ];
22   # iterable = range(10 ** 10)  # Is efficiently reversible
23   # OverflowError: Python int too large to convert to C long
24   doCheck = !stdenv.hostPlatform.is32bit;
26   meta = {
27     homepage = "https://more-itertools.readthedocs.org";
28     description = "Expansion of the itertools module";
29     license = lib.licenses.mit;
30   };