diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-28 12:02:51 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-28 17:46:24 +0000 |
| commit | f10a5d32ee167736d2708133b5e55b41c185dc1f (patch) | |
| tree | 79b7add437158ad29a91ace2a54b38eb6d855b53 /gnu | |
| parent | 5f8ef67529d5290ac48d0137703449d22939e8cc (diff) | |
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
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 28 | ||||
| -rw-r--r-- | 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 d72097cccf9..6a197c63e51 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 0916fbfe20f..c000c0596bc 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") |
