guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit cdfedc5462cfe3b9fb8d8e34dbe0c530d21dd0ff
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Aug 10 18:28:08 2025 +0100

    gnu: python-pyte: Move to python-xyz.
    
    * gnu/packages/terminals.scm (python-pyte): Move from here ...
    * gnu/packages/python-xyz.scm: ... to here.
    
    Change-Id: I749cca61abe2825e511db6dd7b7d47e2aba9d25d
---
 gnu/packages/python-xyz.scm | 29 +++++++++++++++++++++++++++++
 gnu/packages/terminals.scm  | 29 -----------------------------
 2 files changed, 29 insertions(+), 29 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 2a7c2013c6..571f8d7d74 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -108,6 +108,7 @@
 ;;; Copyright © 2021 Franck Pérignon <[email protected]>
 ;;; Copyright © 2021, 2022 Petr Hodina <[email protected]>
 ;;; Copyright © 2021 Simon Streit <[email protected]>
+;;; Copyright © 2021 Stefan Reichör <[email protected]>
 ;;; Copyright © 2021, 2022, 2023 Daniel Meißner 
<[email protected]>
 ;;; Copyright © 2021, 2022 Pradana Aumars <[email protected]>
 ;;; Copyright © 2021–2024 Felix Gruber <[email protected]>
@@ -1181,6 +1182,34 @@ cache directory, to avoid modifying the host's 
environment, and further
 activated using a set of environment variables.")
     (license (list license:expat license:asl2.0))))
 
+(define-public python-pyte
+  (package
+    (name "python-pyte")
+    (version "0.8.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/selectel/pyte";)
+              (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1cdhnl6rp4kcbs3s766519k80pf5ma18mgv6cyidf4nbgysjavmv"))))
+    (build-system pyproject-build-system)
+    (propagated-inputs (list python-wcwidth))
+    (native-inputs (list python-pytest python-setuptools python-wheel))
+    (home-page "https://pyte.readthedocs.io/";)
+    (synopsis "Simple VTXXX-compatible terminal emulator")
+    (description "@code{pyte} is an in-memory VTxxx-compatible terminal
+emulator.  @var{VTxxx} stands for a series of video terminals, developed by
+DEC between 1970 and 1995.  The first and probably most famous one was the
+VT100 terminal, which is now a de-facto standard for all virtual terminal
+emulators.
+
+pyte is a fork of vt102, which was an incomplete pure Python implementation
+of VT100 terminal.")
+    (license license:lgpl3+)))
+
 (define-public python-pyxdameraulevenshtein
   (package
     (name "python-pyxdameraulevenshtein")
diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index f07123041a..f54ec30070 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -30,7 +30,6 @@
 ;;; Copyright © 2021 Brice Waegeneire <[email protected]>
 ;;; Copyright © 2021 Solene Rapenne <[email protected]>
 ;;; Copyright © 2021 Petr Hodina <[email protected]>
-;;; Copyright © 2021 Stefan Reichör <[email protected]>
 ;;; Copyright © 2022 Felipe Balbi <[email protected]>
 ;;; Copyright © 2022 ( <[email protected]>
 ;;; Copyright © 2022, 2023 jgart <[email protected]>
@@ -1064,34 +1063,6 @@ minimalistic.")
 usable with any list--including files, command history, processes and more.")
     (license license:expat)))
 
-(define-public python-pyte
-  (package
-    (name "python-pyte")
-    (version "0.8.2")
-    (source
-     (origin
-       (method git-fetch)
-       (uri (git-reference
-              (url "https://github.com/selectel/pyte";)
-              (commit version)))
-       (file-name (git-file-name name version))
-       (sha256
-        (base32 "1cdhnl6rp4kcbs3s766519k80pf5ma18mgv6cyidf4nbgysjavmv"))))
-    (build-system pyproject-build-system)
-    (propagated-inputs (list python-wcwidth))
-    (native-inputs (list python-pytest python-setuptools python-wheel))
-    (home-page "https://pyte.readthedocs.io/";)
-    (synopsis "Simple VTXXX-compatible terminal emulator")
-    (description "@code{pyte} is an in-memory VTxxx-compatible terminal
-emulator.  @var{VTxxx} stands for a series of video terminals, developed by
-DEC between 1970 and 1995.  The first and probably most famous one was the
-VT100 terminal, which is now a de-facto standard for all virtual terminal
-emulators.
-
-pyte is a fork of vt102, which was an incomplete pure Python implementation
-of VT100 terminal.")
-    (license license:lgpl3+)))
-
 (define-public python-blessings
   (package
     (name "python-blessings")

Reply via email to