diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-11-20 23:07:28 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-11-20 23:11:45 +0100 |
commit | 27ceda472a187c39e03c4b0d0deea57786ab7e1b (patch) | |
tree | d74acdb201ebe7d8bb3f51430639d90c0fcb81bd /gnu | |
parent | aaf210888c891048060f4104f6e5b4329780c983 (diff) | |
download | guix-27ceda472a187c39e03c4b0d0deea57786ab7e1b.tar.gz guix-27ceda472a187c39e03c4b0d0deea57786ab7e1b.zip |
gnu: python-qtconsole: Add dependency on python-pyqt.
* gnu/packages/python-xyz.scm (python-qtconsole)[propagated-inputs]: Add
PYTHON-PYQT.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-xyz.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 4d0666cc36..b953f3a7cb 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") |