Skip to content

Commit 2120c76

Browse files
hugobuddelcivodul
authored andcommitted
gnu: python-pypandoc: Upgrade to 1.7.5.
The tests of python-pypandoc 1.6.5 fail; these are fixed in 1.7.5: JessicaTegner/pypandoc@6670e90 The tests of later versions of python-pypandoc also fail though: JessicaTegner/pypandoc#327 Finally, python-pypandoc requires the pandoc data to be embeded in the binary: https://github.com/jgm/pandoc/blob/main/INSTALL.md#creating-a-relocatable-binary * gnu/packages/python-xyz.scm (python-pypandoc): Upgrade to 1.7.5 * gnu/packages/haskel-xyz.scm (pandoc): Embed data files. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
1 parent 6a23ef8 commit 2120c76

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

gnu/packages/haskell-xyz.scm

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8315,6 +8315,9 @@ provided for those who need a drop-in replacement for Markdown.pl.")
83158315
(name "pandoc")
83168316
(arguments
83178317
(list
8318+
;; Create entirely self-contained binary by embedding the data files
8319+
;; in the binary itself. Required for python-pypandoc.
8320+
#:configure-flags #~(list "-fembed_data_files")
83188321
#:phases
83198322
#~(modify-phases %standard-phases
83208323
(add-after 'register 'remove-libraries

gnu/packages/python-xyz.scm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27787,17 +27787,17 @@ By default it uses the open Python vulnerability database Safety DB.")
2778727787
(define-public python-pypandoc
2778827788
(package
2778927789
(name "python-pypandoc")
27790-
(version "1.6.4")
27790+
(version "1.7.5")
2779127791
(source
2779227792
(origin
2779327793
(method url-fetch)
2779427794
(uri (pypi-uri "pypandoc" version))
2779527795
(sha256
2779627796
(base32
27797-
"149basv4pvzg9zm74cjz68x8s2n5fykyj7prgysb0qfmja73r83f"))))
27797+
"0l6a8ngzpx363q2jskxxkx6psfhqrvc4js80dmn16r3vw6m2cb40"))))
2779827798
(build-system python-build-system)
2779927799
(inputs
27800-
(list pandoc))
27800+
(list pandoc python-pandocfilters))
2780127801
(propagated-inputs
2780227802
`(("wheel" ,python-wheel)))
2780327803
(native-inputs

0 commit comments

Comments
 (0)