python3Packages.more-itertools: 8.12.0 -> 8.13.0

This commit is contained in:
Martin Weinelt
2022-07-21 22:34:00 +02:00
parent 1bfbf1ac87
commit 90f36cedac
@@ -1,32 +1,43 @@
{ lib
, buildPythonPackage
, fetchPypi
, nose
, flit-core
, pytestCheckHook
, six
, stdenv
}:
buildPythonPackage rec {
pname = "more-itertools";
version = "8.12.0";
version = "8.13.0";
format = "flit";
src = fetchPypi {
inherit pname version;
sha256 = "7dc6ad46f05f545f900dd59e8dfb4e84a4827b97b3cfecb175ea0c7d247f6064";
sha256 = "sha256-pCkBoKWxadkl9vIXzVoZDjLvVDYJBbnDnufbUxO/7A8=";
};
checkInputs = [ nose ];
propagatedBuildInputs = [ six ];
nativeBuildInouts = [
flit-core
];
propagatedBuildInputs = [
six
];
checkInputs = [
pytestCheckHook
];
# iterable = range(10 ** 10) # Is efficiently reversible
# OverflowError: Python int too large to convert to C long
doCheck = !stdenv.hostPlatform.is32bit;
meta = {
meta = with lib; {
homepage = "https://more-itertools.readthedocs.org";
changelog = "https://more-itertools.readthedocs.io/en/stable/versions.html";
description = "Expansion of the itertools module";
license = lib.licenses.mit;
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}