sharlatan pushed a commit to branch python-team
in repository guix.
commit ca5ff160ec5537f4e53ede8636ada34ffa02f166
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Nov 26 17:37:52 2024 +0000
gnu: python-anyio: Update to 4.6.2.
* gnu/packages/python-xyz.scm (python-anyio): Update to 4.6.2.
[build-system]: Swap to pyproject-build-system.
[native-inputs]: Remove python-coverage; add python-psutil,
python-setuptools, and python-wheel.
Change-Id: I8f8a25d67561446afe1c399cd9cde11ac43df333
---
gnu/packages/python-xyz.scm | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 3cfa040f4c..5a84f052e2 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -30892,15 +30892,15 @@ standard error channel (stderr) in your program.")
(define-public python-anyio
(package
(name "python-anyio")
- (version "3.6.2")
+ (version "4.6.2")
(source
(origin
(method url-fetch)
(uri (pypi-uri "anyio" version))
(sha256
(base32
- "08bljjq5xq0l9id36q3vvjgygirq7g7q2bs41hdg82p379khvsi5"))))
- (build-system python-build-system)
+ "0ir3n40gdcm1kd7qyn4c46pgdyyp36h49a0pifyv6lh7vnrpnapp"))))
+ (build-system pyproject-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
@@ -30951,15 +30951,17 @@ standard error channel (stderr) in your program.")
python-typing-extensions))
(native-inputs
(list python-contextlib2
- python-coverage
python-hypothesis
python-mock
+ python-psutil
python-pytest
python-pytest-mock
+ python-setuptools
python-setuptools-scm
python-trio
python-trustme
- python-uvloop))
+ python-uvloop
+ python-wheel))
(home-page "https://github.com/agronholm/anyio")
(synopsis "Compatibility layer for multiple asynchronous event loops")
(description