guix_mirror_bot pushed a commit to branch master
in repository guix.
commit c4318ae44917ebc576af7a965c1ccfaba3692722
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Oct 19 21:53:44 2025 +0100
gnu: python-txaio: Update to 25.9.2.
* gnu/packages/python-xyz.scm (python-txaio): Update to 25.9.2.
[native-inputs]: Remove python-twisted and python-wheel.
Change-Id: Ic326dcfee1671d0a4b4248a9a4b03a17ea43f3f6
---
gnu/packages/python-xyz.scm | 21 +++++++++++----------
1 file changed, 11 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e0a1e6bfc7..7775bf40b2 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -30042,21 +30042,22 @@ and dates in \"human readable\" forms. For example,
it would display
(define-public python-txaio
(package
(name "python-txaio")
- (version "23.1.1")
+ (version "25.9.2")
(source
- (origin
- (method url-fetch)
- (uri (pypi-uri "txaio" version))
- (sha256
- (base32
- "017p9x0bssf7g9slmf30ddh1baawsmxas4nivx334pkfjxp23agr"))))
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "txaio" version))
+ (sha256
+ (base32 "16ch62yk2gdikkak113h6qw13ns9ksca817hky0vabn0fyh08874"))))
(build-system pyproject-build-system)
(native-inputs
- (list python-pytest python-setuptools python-twisted python-wheel))
+ (list python-pytest
+ python-setuptools))
(home-page "https://github.com/crossbario/txaio")
(synopsis "Compatibility layer between Python asyncio and Twisted")
- (description "Txaio provides a compatibility layer between the Python
-@code{asyncio} module and @code{Twisted}.")
+ (description
+ "Txaio provides a compatibility layer between the Python @code{asyncio}
+ bsmodule and @code{Twisted}.")
(license license:expat)))
(define-public python-toolshed