diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2021-10-05 14:13:57 +0200 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2021-10-08 09:13:54 +0200 |
commit | 06587abbd2e6b94d8afae279dbe4f480617a063f (patch) | |
tree | f3f5ff6e30e79ee959fb709f12273cd8f767de38 | |
parent | 7eb9fe4e538ce8cdac28abb0e5433b1b797b5030 (diff) | |
download | guix-06587abbd2e6b94d8afae279dbe4f480617a063f.tar.gz |
gnu: python-pypandoc: Upgrade to 1.6.4.
Required for the updated pandoc. * gnu/packages/python-xyz.scm (python-pypandoc): Upgrade to 1.6.4. [native-inputs]: Add texlive-iftex.
-rw-r--r-- | gnu/packages/python-xyz.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 31b2d1fb55..634cd5efec 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -25686,14 +25686,14 @@ By default it uses the open Python vulnerability database Safety DB.") (define-public python-pypandoc (package (name "python-pypandoc") - (version "1.5") + (version "1.6.4") (source (origin (method url-fetch) (uri (pypi-uri "pypandoc" version)) (sha256 (base32 - "1zvn9764cf7kkjkmr9gw6wc8adpk06qxr1rhxwa9pg0zmdvrk90l")))) + "149basv4pvzg9zm74cjz68x8s2n5fykyj7prgysb0qfmja73r83f")))) (build-system python-build-system) (inputs `(("pandoc" ,pandoc))) @@ -25702,6 +25702,7 @@ By default it uses the open Python vulnerability database Safety DB.") (native-inputs `(("texlive" ,(texlive-union (list texlive-amsfonts/patched texlive-fonts-ec + texlive-iftex texlive-latex-hyperref texlive-latex-oberdiek texlive-lm |