civodul pushed a commit to branch core-updates-frozen
in repository guix.
commit 27ceda472a187c39e03c4b0d0deea57786ab7e1b
Author: Ludovic Courtès <[email protected]>
AuthorDate: Sat Nov 20 23:07:28 2021 +0100
gnu: python-qtconsole: Add dependency on python-pyqt.
* gnu/packages/python-xyz.scm (python-qtconsole)[propagated-inputs]: Add
PYTHON-PYQT.
---
gnu/packages/python-xyz.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 4d0666c..b953f3a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -12265,7 +12265,8 @@ Jupyter kernels such as IJulia and IRKernel.")
#t)))))
(propagated-inputs
`(("python-ipykernel" ,python-ipykernel)
- ("python-ipython" ,python-ipython)))
+ ("python-ipython" ,python-ipython)
+ ("python-pyqt" ,python-pyqt)))
(native-inputs
`(("python-pytest" ,python-pytest)))
(home-page "https://jupyter.org")