diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2025-01-14 22:58:37 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2025-01-20 21:37:57 +0100 |
commit | 9a299d931e3961fbfa888c95e91164e91f7f93a1 (patch) | |
tree | 266336131b00a8bfcf0a1b3d7d62fe45ff39a13c | |
parent | ccd83fd84e581c30fc2436a3f117bb049153223e (diff) |
gnu: Add python-aioitertools.
* gnu/packages/python-web.scm (python-aioitertools): New variable.
Change-Id: I1ef29297b9e3d526234270dc2701ab55704e3fe4
-rw-r--r-- | gnu/packages/python-web.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 4721e2bcaa..6f43a19a16 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -662,6 +662,35 @@ Eyeballs (RFC 8305) when you already have a list of @code{addrinfo} and not a DNS name.") (license license:psfl))) +(define-public python-aioitertools + (package + (name "python-aioitertools") + (version "0.12.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "aioitertools" version)) + (sha256 + (base32 "0syxv2r90d6410hc68jxhk610pdgx19n1n5rc7shaxxv9xdhbaf2")))) + (build-system pyproject-build-system) + ;; Curiously, no tests are collected although they exist. + (arguments (list #:tests? #false)) + (propagated-inputs (list python-typing-extensions)) + (native-inputs + (list python-coverage + python-flake8 + python-flit-core + python-mypy + python-pytest + python-pytest-asyncio + python-sphinx)) + (home-page "https://pypi.org/project/aioitertools/") + (synopsis "Itertools and builtins for AsyncIO and mixed iterables") + (description + "This package provides an implementation of itertools, builtins, and more +for AsyncIO and mixed-type iterables.") + (license license:expat))) + (define-public python-aiosignal (package (name "python-aiosignal") |