guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 5f8ef67529d5290ac48d0137703449d22939e8cc
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Oct 28 11:49:27 2025 +0000

    gnu: python-panflute: Move to python-xyz.
    
    * gnu/packages/textutils.scm (python-panflute): Move from here ...
    * gnu/packages/python-xyz.scm: ... to here.
    
    Change-Id: I7d63724ac792057e6cc6d6c4d3d51a1b6441bbb3
---
 gnu/packages/python-xyz.scm | 27 +++++++++++++++++++++++++++
 gnu/packages/textutils.scm  | 26 --------------------------
 2 files changed, 27 insertions(+), 26 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 2d63f7e55f..d72097cccf 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -153,6 +153,7 @@
 ;;; Copyright © 2023 Attila Lendvai <[email protected]>
 ;;; Copyright © 2023, 2024 Troy Figiel <[email protected]>
 ;;; Copyright © 2023 Adam Faiz <[email protected]>
+;;; Copyright © 2023 Wiktor Żelazny <[email protected]>
 ;;; Copyright © 2024 Timothee Mathieu <[email protected]>
 ;;; Copyright © 2024 Ian Eure <[email protected]>
 ;;; Copyright © 2024 Adriel Dumas--Jondeau <[email protected]>
@@ -1401,6 +1402,32 @@ numbers like forty-second.")
 of Ordered Set.")
     (license license:expat)))
 
+(define-public python-panflute
+  (package
+    (name "python-panflute")
+    (version "2.3.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "panflute" version))
+       (sha256
+        (base32 "07wg5md93jcdkpiqljwr3p1xzvm6nf7vbiay0bp84fgg6hmd06sz"))))
+    (build-system pyproject-build-system)
+    (arguments
+     (list #:tests? #f))        ;require pandoc to run tests
+    (native-inputs
+     (list python-setuptools))
+    (propagated-inputs
+     (list python-click
+           python-pyyaml))
+    (home-page "http://scorreia.com/software/panflute/";)
+    (synopsis "Pythonic Pandoc filters")
+    (description
+     "Panflute is a Python package that makes Pandoc filters fun to write.
+It is a pythonic alternative to John MacFarlane's pandocfilters, from which it
+is heavily inspired.")
+    (license license:bsd-3)))
+
 (define-public python-pastel
   (package
     (name "python-pastel")
diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm
index fdd76876d3..0916fbfe20 100644
--- a/gnu/packages/textutils.scm
+++ b/gnu/packages/textutils.scm
@@ -2004,32 +2004,6 @@ easily specify file types, match highlighting, 
Perl-Compatible Regular
 Expressions, and being faster to type than grep.")
     (license license:artistic2.0)))
 
-(define-public python-panflute
-  (package
-    (name "python-panflute")
-    (version "2.3.1")
-    (source (origin
-              (method url-fetch)
-              (uri (pypi-uri "panflute" version))
-              (sha256
-               (base32
-                "07wg5md93jcdkpiqljwr3p1xzvm6nf7vbiay0bp84fgg6hmd06sz"))))
-    (build-system pyproject-build-system)
-    (arguments
-     (list #:tests? #f))        ;require pandoc to run tests
-    (native-inputs
-     (list python-setuptools))
-    (propagated-inputs
-     (list python-click
-           python-pyyaml))
-    (home-page "http://scorreia.com/software/panflute/";)
-    (synopsis "Pythonic Pandoc filters")
-    (description
-     "Panflute is a Python package that makes Pandoc filters fun to
-write.  It is a pythonic alternative to John MacFarlane's pandocfilters, from
-which it is heavily inspired.")
-    (license license:bsd-3)))
-
 (define-public pandoc-include
   (package
     (name "pandoc-include")

Reply via email to