guix_mirror_bot pushed a commit to branch master
in repository guix.

commit f10a5d32ee167736d2708133b5e55b41c185dc1f
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Oct 28 12:02:51 2025 +0000

    gnu: python-pandocfilters: Move to pyhton-xyz.
    
    * gnu/packages/textutils.scm (python-pandocfilters): Move from here ...
    * gnu/packages/python-xyz.scm: ... to here.
    
    Change-Id: I37675f6d4d48e1499b78f1efcecd927a5fe685a0
---
 gnu/packages/python-xyz.scm | 28 ++++++++++++++++++++++++++++
 gnu/packages/textutils.scm  | 28 ----------------------------
 2 files changed, 28 insertions(+), 28 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index d72097cccf..6a197c63e5 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -1402,6 +1402,34 @@ numbers like forty-second.")
 of Ordered Set.")
     (license license:expat)))
 
+(define-public python-pandocfilters
+  (package
+    (name "python-pandocfilters")
+    (version "1.5.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "pandocfilters" version))
+       (sha256
+        (base32 "17lknixjja23jczlv8afgfky94m4gwl7wc36iczw1sz4brallaq0"))))
+    (build-system pyproject-build-system)
+    (arguments
+     (list #:tests? #f))        ;require pandoc to run tests
+    (native-inputs
+     (list python-setuptools))
+    (home-page "https://github.com/jgm/pandocfilters";)
+    (synopsis "Python module for writing Pandoc filters")
+    (description "Pandoc is a powerful utility to transform various
+input formats into a wide range of output formats.  To alter the
+exported output document, Pandoc allows the usage of filters, which
+are pipes that read a JSON serialization of the Pandoc AST from stdin,
+transform it in some way, and write it to stdout.  It allows therefore
+to alter the processing of Pandoc's supported input formats, for
+instance one can add new syntax elements to markdown, etc.
+
+This package provides Python bindings.")
+    (license license:bsd-3)))
+
 (define-public python-panflute
   (package
     (name "python-panflute")
diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm
index 0916fbfe20..c000c0596b 100644
--- a/gnu/packages/textutils.scm
+++ b/gnu/packages/textutils.scm
@@ -1700,34 +1700,6 @@ hosts and terminals.  It converts input kanji code to 
designated kanji code
 such as ISO-2022-JP, Shift_JIS, EUC-JP, UTF-8, UTF-16 or UTF-32.")
       (license license:zlib))))
 
-(define-public python-pandocfilters
-  (package
-    (name "python-pandocfilters")
-    (version "1.5.1")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (pypi-uri "pandocfilters" version))
-       (sha256
-        (base32 "17lknixjja23jczlv8afgfky94m4gwl7wc36iczw1sz4brallaq0"))))
-    (build-system pyproject-build-system)
-    (arguments
-     (list #:tests? #f))        ;require pandoc to run tests
-    (native-inputs
-     (list python-setuptools))
-    (home-page "https://github.com/jgm/pandocfilters";)
-    (synopsis "Python module for writing Pandoc filters")
-    (description "Pandoc is a powerful utility to transform various
-input formats into a wide range of output formats.  To alter the
-exported output document, Pandoc allows the usage of filters, which
-are pipes that read a JSON serialization of the Pandoc AST from stdin,
-transform it in some way, and write it to stdout.  It allows therefore
-to alter the processing of Pandoc's supported input formats, for
-instance one can add new syntax elements to markdown, etc.
-
-This package provides Python bindings.")
-    (license license:bsd-3)))
-
 (define-public aha
   (package
     (name "aha")

Reply via email to