From 165a78e46871c1d75eedab27d5b3b0d8fb2124fa Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 26 Jun 2023 15:12:40 +0200 Subject: [PATCH] gnu: Add texlive-pyluatex. * gnu/packages/tex.scm (texlive-pyluatex): New variable. --- gnu/packages/tex.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 6abf65eeb7..88d9f66f99 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -11942,6 +11942,31 @@ (define-public texlive-plantuml diagrams.") (license license:lppl1.3c))) +(define-public texlive-pyluatex + (package + (name "texlive-pyluatex") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/lualatex/pyluatex/" + "tex/lualatex/pyluatex/") + (base32 + "0dwqi0m3qf6s41wpavngq1c4wn8yjfas798r4a53wr20y3ajhqnn"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/pyluatex") + (synopsis "Execute Python code on the fly in your LaTeX documents") + (description + "PyLuaTeX allows you to execute Python code and to include the resulting +output in your LaTeX documents in a single compilation run. LaTeX documents +must be compiled with LuaLaTeX for this to work. PyLuaTeX runs a Python +InteractiveInterpreter (actually several if you use different sessions) in the +background for on-the-fly code execution. Python code from your LaTeX file is +sent to the background interpreter through a TCP socket. This approach allows +your Python code to be executed and the output to be integrated in your LaTeX +file in a single compilation run.") + (license (list license:expat license:lppl1.3c)))) + (define-public texlive-koma-script (package (name "texlive-koma-script")