diff options
author | Leo Famulari <leo@famulari.name> | 2022-01-28 14:38:44 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2022-02-16 14:34:25 -0500 |
commit | 0dc0d87839ccb7e85f99d7469da1ef478a1c8dc4 (patch) | |
tree | 0cb682352bfb2219c8d0b96e7cdf216a794966ce | |
parent | 373c77bf22ad69bdb303742ff5e18ec47de20d4f (diff) | |
download | guix-0dc0d87839ccb7e85f99d7469da1ef478a1c8dc4.tar guix-0dc0d87839ccb7e85f99d7469da1ef478a1c8dc4.tar.gz |
gnu: python-pyqtgraph: Remove a transitive dependency on QtWebKit.
See <https://issues.guix.gnu.org/53289> for more information about this change.
* gnu/packages/python-xyz.scm (python-pyqtgraph)[propagated-inputs]: Replace
python-pyqt with python-pyqt-without-qtwebkit.
-rw-r--r-- | gnu/packages/python-xyz.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 9478b8a2bc..21e6a7755b 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -14948,7 +14948,7 @@ ISO 8859, etc.).") (list qtbase-5)) (propagated-inputs (list python-h5py python-numpy python-pyopengl python-scipy - python-pyqt)) + python-pyqt-without-qtwebkit)) (home-page "http://www.pyqtgraph.org") (synopsis "Scientific graphics and GUI library for Python") (description |