diff options
author | Konrad Hinsen <konrad.hinsen@fastmail.net> | 2018-01-15 16:22:29 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-01-16 16:00:21 +0100 |
commit | 7e06086522484fbb68917c9c777a24abc4ea4da8 (patch) | |
tree | 23cf8499def6b7c7427a5811aa833ca21dcce00a | |
parent | 1d47ea86ff2fca7d34908501ec3232a68ea4c7d9 (diff) | |
download | guix-7e06086522484fbb68917c9c777a24abc4ea4da8.tar guix-7e06086522484fbb68917c9c777a24abc4ea4da8.tar.gz |
gnu: python-matplotlib: Fix import failure
* gnu/packages/python.scm (python-matplotlib)[propagated-inputs]: Add
python-pyqt.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/python.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 0b582e6b73..0a7ca2e77a 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -3213,6 +3213,7 @@ convert between colorspaces like sRGB, XYZ, CIEL*a*b*, CIECAM02, CAM02-UCS, etc. ;; object. For this reason we need to import both libraries. ;; https://pythonhosted.org/cairocffi/cffi_api.html#converting-pycairo ("python-pycairo" ,python-pycairo) + ("python-pyqt" ,python-pyqt) ("python-cairocffi" ,python-cairocffi))) (inputs `(("libpng" ,libpng) @@ -3222,7 +3223,6 @@ convert between colorspaces like sRGB, XYZ, CIEL*a*b*, CIECAM02, CAM02-UCS, etc. ("glib" ,glib) ;; FIXME: Add backends when available. ;("python-wxpython" ,python-wxpython) - ("python-pyqt" ,python-pyqt) ("tcl" ,tcl) ("tk" ,tk))) (native-inputs |