python312Packages.aioitertools: 0.11.0 -> 0.12.0 (#342016)

This commit is contained in:
Fabian Affolter 2024-09-24 08:52:18 +02:00 committed by GitHub
commit 9eb05103a8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -16,19 +16,19 @@
buildPythonPackage rec {
pname = "aioitertools";
version = "0.11.0";
format = "pyproject";
version = "0.12.0";
pyproject = true;
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-QsaLjdOmnCv38iM7999LtYtVe8pSUqwC7VGHu8Z9aDE=";
hash = "sha256-wqkFW0+7dwX1YbnYYFPor10QzIRdIsMgCMQ0kLLY3Ws=";
};
nativeBuildInputs = [ flit-core ];
build-system = [ flit-core ];
propagatedBuildInputs = lib.optionals (pythonOlder "3.10") [ typing-extensions ];
dependencies = lib.optionals (pythonOlder "3.10") [ typing-extensions ];
nativeCheckInputs = [ unittestCheckHook ];
@ -37,6 +37,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Implementation of itertools, builtins, and more for AsyncIO and mixed-type iterables";
homepage = "https://aioitertools.omnilib.dev/";
changelog = "https://github.com/omnilib/aioitertools/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ teh ];
};