summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeo Famulari <leo@famulari.name>2022-01-27 13:18:13 -0500
committerLeo Famulari <leo@famulari.name>2022-01-28 14:03:03 -0500
commit262a1734e250f756471a066348381017b3e281d6 (patch)
tree957377d5a780cf4f5cc922ab9bc3a13037674751
parente3abc53c7e8bcb93b3309aa223a3d68f8cded5f3 (diff)
downloadguix-patches-262a1734e250f756471a066348381017b3e281d6.tar
guix-patches-262a1734e250f756471a066348381017b3e281d6.tar.gz
gnu: python-pytest-qt: Remove a transitive dependency on QtWebKit.
See <https://issues.guix.gnu.org/53289> for more information about this change. * gnu/packages/python-check.scm (python-pytest-qt)[propagated-inputs]: Replace python-pyqt with python-pyqt-without-qtwebkit.
-rw-r--r--gnu/packages/python-check.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index f971dae5b4..05a378601f 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -1494,7 +1494,7 @@ libraries.")
(setenv "QT_QPA_PLATFORM" "offscreen")
#t)))))
(propagated-inputs
- (list python-pyqt))
+ (list python-pyqt-without-qtwebkit))
(native-inputs
(list python-pytest python-pytest-runner python-setuptools-scm))
(home-page "https://github.com/pytest-dev/pytest-qt")