diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 24fc512178..7f724bc907 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -21994,14 +21994,19 @@ By default it uses the open Python vulnerability database Safety DB.") "1zvn9764cf7kkjkmr9gw6wc8adpk06qxr1rhxwa9pg0zmdvrk90l")))) (build-system python-build-system) (inputs - `(("pandoc" ,ghc-pandoc) - ("pandoc-citeproc" ,ghc-pandoc-citeproc))) + `(("pandoc" ,pandoc) + ("pandoc-citeproc" ,pandoc-citeproc))) (propagated-inputs `(("pip" ,python-pip) ("setuptools" ,python-setuptools) ("wheel" ,python-wheel))) (native-inputs - `(("texlive" ,texlive))) + `(("texlive" ,(texlive-union (list texlive-amsfonts + texlive-fonts-ec + texlive-latex-hyperref + texlive-latex-oberdiek + texlive-lm + texlive-xcolor))))) (arguments `(#:phases (modify-phases %standard-phases @@ -22011,6 +22016,8 @@ By default it uses the open Python vulnerability database Safety DB.") (substitute* "tests.py" (("test_basic_conversion_from_http_url") "skip_test_basic_conversion_from_http_url")) + ;; XXX: Needed by texlive-union to generate fonts + (setenv "HOME" "/tmp") #t))))) (home-page "https://github.com/bebraw/pypandoc") (synopsis "Python wrapper for pandoc.")