M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +28 -0
@@ 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")
M gnu/packages/textutils.scm => gnu/packages/textutils.scm +0 -28
@@ 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")