[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
12/12: gnu: python-pypandoc: Upgrade to 1.7.5.
From: |
guix-commits |
Subject: |
12/12: gnu: python-pypandoc: Upgrade to 1.7.5. |
Date: |
Tue, 21 Mar 2023 14:15:25 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 2120c768f2366c92d72d15e4044a81c31e57688b
Author: Hugo Buddelmeijer <hugo@buddelmeijer.nl>
AuthorDate: Mon Mar 6 21:23:13 2023 +0100
gnu: python-pypandoc: Upgrade to 1.7.5.
The tests of python-pypandoc 1.6.5 fail; these are fixed in 1.7.5:
https://github.com/JessicaTegner/pypandoc/commit/6670e906dccaddcfcdec228e34e0eaffc20ae791
The tests of later versions of python-pypandoc also fail though:
https://github.com/JessicaTegner/pypandoc/pull/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>
---
gnu/packages/haskell-xyz.scm | 3 +++
gnu/packages/python-xyz.scm | 6 +++---
2 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index 86af842980..f2cc60267b 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -8315,6 +8315,9 @@ provided for those who need a drop-in replacement for
Markdown.pl.")
(name "pandoc")
(arguments
(list
+ ;; Create entirely self-contained binary by embedding the data files
+ ;; in the binary itself. Required for python-pypandoc.
+ #:configure-flags #~(list "-fembed_data_files")
#:phases
#~(modify-phases %standard-phases
(add-after 'register 'remove-libraries
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index ac10290237..9d086136d0 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -27787,17 +27787,17 @@ By default it uses the open Python vulnerability
database Safety DB.")
(define-public python-pypandoc
(package
(name "python-pypandoc")
- (version "1.6.4")
+ (version "1.7.5")
(source
(origin
(method url-fetch)
(uri (pypi-uri "pypandoc" version))
(sha256
(base32
- "149basv4pvzg9zm74cjz68x8s2n5fykyj7prgysb0qfmja73r83f"))))
+ "0l6a8ngzpx363q2jskxxkx6psfhqrvc4js80dmn16r3vw6m2cb40"))))
(build-system python-build-system)
(inputs
- (list pandoc))
+ (list pandoc python-pandocfilters))
(propagated-inputs
`(("wheel" ,python-wheel)))
(native-inputs
- branch master updated (4f63b4b86d -> 2120c768f2), guix-commits, 2023/03/21
- 01/12: services: static-networking: 'eval-when' for code used at expansion-time., guix-commits, 2023/03/21
- 04/12: gnu: vtk: Remove reference to GCC., guix-commits, 2023/03/21
- 03/12: gnu: vtk: Enable OpenMP, TBB, and Open MPI support., guix-commits, 2023/03/21
- 05/12: gnu: fennel: Update to 1.3.0., guix-commits, 2023/03/21
- 06/12: gnu: fnlfmt: Update to 0.3.0., guix-commits, 2023/03/21
- 07/12: gnu: Add dvisvgm., guix-commits, 2023/03/21
- 08/12: gnu: go-filippo-io-age: Update to 1.1.1., guix-commits, 2023/03/21
- 09/12: gnu: pass-age: Update to 1.7.4a1., guix-commits, 2023/03/21
- 10/12: gnu: ssh-to-age: Update to 1.1.2., guix-commits, 2023/03/21
- 12/12: gnu: python-pypandoc: Upgrade to 1.7.5.,
guix-commits <=
- 02/12: gnu: gnulib: Depend on git-minimal/pinned., guix-commits, 2023/03/21
- 11/12: gnu: pocl: Update to 3.1, guix-commits, 2023/03/21