guix_mirror_bot pushed a commit to branch python-team in repository guix. commit c4e0d1b2fd1414b787945131ce8fdc2df88b6bac Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Sun Aug 10 18:52:25 2025 +0100
gnu: python-aiostream: Update to 0.7.0. * gnu/packages/python-web.scm (python-aiostream): Update to 0.7.0. [bulid-system]: Use pyproejct. [propagated-inputs]: Add python-typing-extensions. [native-inputs]: Remove python-pytest-runner and python-wheel. Change-Id: I96cce47b28966e5e15d0a7e91a0d6637d111ad61 --- gnu/packages/python-web.scm | 31 +++++++++++++++---------------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 10c58b83ba..e9160f2d35 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -1707,25 +1707,24 @@ comes with a SOCKS proxy client.") (define-public python-aiostream (package (name "python-aiostream") - (version "0.4.5") - (source (origin - ;; Tests not included in pypi release. - (method git-fetch) - (uri (git-reference - (url "https://github.com/vxgmichel/aiostream") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0l2ijb7yk0820wiyf6zrzx8fhzf8925an7r06mcaw3in1mr6rssq")))) - (build-system python-build-system) + (version "0.7.0") + (source + (origin + (method git-fetch) ;no tests in PyPI archvie + (uri (git-reference + (url "https://github.com/vxgmichel/aiostream") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wf89l9f0ivlv796pklpgykx6j6ksfqrmvzikd8w5j6ldln7bv50")))) + (build-system pyproject-build-system) (native-inputs (list python-pytest - python-pytest-asyncio python-pytest-cov - python-pytest-runner - python-setuptools - python-wheel)) + python-pytest-asyncio + python-setuptools)) + (propagated-inputs + (list python-typing-extensions)) (home-page "https://github.com/vxgmichel/aiostream") (synopsis "Generator-based operators for asynchronous iteration") (description "@code{aiostream} provides a collection of stream operators that can