linux_6_1: 6.1.117 -> 6.1.118
[NixPkgs.git] / pkgs / development / python2-modules / more-itertools / default.nix
blob7a09dda8e9cd758ba5c94988da7fee7dbe80bf52
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , unittestCheckHook
5 , six
6 , stdenv
7 }:
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   };