This is an automated email from the git hooks/post-receive script.
ngz pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new f858704e7c gnu: xonsh: Add missing input.
f858704e7c is described below
commit f858704e7c886cfdae78c1bda9745c6b2dffb659
Author: jgart <[email protected]>
AuthorDate: Tue Apr 11 23:48:02 2023 -0500
gnu: xonsh: Add missing input.
Xonsh vim emulation mode/environment variable does not work without this.
* gnu/packages/shell.scm (xonsh)[inputs]: Add PYTHON-PROMPT-TOOLKIT.
Signed-off-by: Nicolas Goaziou <[email protected]>
---
gnu/packages/shells.scm | 1 +
1 file changed, 1 insertion(+)
diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm
index a2a4b70bce..969f01c492 100644
--- a/gnu/packages/shells.scm
+++ b/gnu/packages/shells.scm
@@ -580,6 +580,7 @@ ksh, and tcsh.")
(inputs
(list python-distro
python-ply
+ python-prompt-toolkit
python-pygments
python-pyperclip
python-setproctitle))