guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 4d3d9875448fd8a36fa5fdb0cb5543a2992a995f
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Oct 19 21:55:42 2025 +0100

    gnu: python-txaio: Move to python-web.
    
    * gnu/packages/python-xyz.scm (python-txaio): Move from here ...
    * gnu/packages/python-web.scm: ... to here.
    
    Change-Id: I9c48976bda164db898f669b982e92cff2bbe5a3c
---
 gnu/packages/python-web.scm | 21 +++++++++++++++++++++
 gnu/packages/python-xyz.scm | 21 ---------------------
 2 files changed, 21 insertions(+), 21 deletions(-)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index af6a55fa4d..d415737ad7 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -3845,6 +3845,27 @@ high-speed transfers via libcurl and frequently 
outperforms alternatives.")
     ;; under the terms of LGPLv2.1+ or Expat.
     (license (list license:lgpl2.1+ license:expat))))
 
+(define-public python-txaio
+  (package
+    (name "python-txaio")
+    (version "25.9.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "txaio" version))
+       (sha256
+        (base32 "16ch62yk2gdikkak113h6qw13ns9ksca817hky0vabn0fyh08874"))))
+    (build-system pyproject-build-system)
+    (native-inputs
+     (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}
+ bsmodule and @code{Twisted}.")
+    (license license:expat)))
+
 ;; XXX: Potentially abandonware since 2017, consider to remove when nothing
 ;; depends on it or fails to build.
 (define-public python-txamqp
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 7775bf40b2..6734efaf74 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -30039,27 +30039,6 @@ and dates in \"human readable\" forms.  For example, 
it would display
 \"12345591313\" as \"12.3 billion\".")
     (license license:expat)))
 
-(define-public python-txaio
-  (package
-    (name "python-txaio")
-    (version "25.9.2")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (pypi-uri "txaio" version))
-       (sha256
-        (base32 "16ch62yk2gdikkak113h6qw13ns9ksca817hky0vabn0fyh08874"))))
-    (build-system pyproject-build-system)
-    (native-inputs
-     (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}
- bsmodule and @code{Twisted}.")
-    (license license:expat)))
-
 (define-public python-toolshed
   (package
     (name "python-toolshed")

Reply via email to