summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyqt
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2017-02-05 15:05:29 +0300
committerNikolay Amiantov <ab@fmap.me>2017-02-05 15:05:53 +0300
commitc226a93a9effa2ee1d5eb0fb1aa22befa78192fc (patch)
treee8669e05a46a89f15fc4458afbed01da90735102 /pkgs/development/python-modules/pyqt
parent41c1534aed823e6141ed5ee3bada9e48d4a673e8 (diff)
downloadnixlib-c226a93a9effa2ee1d5eb0fb1aa22befa78192fc.tar
nixlib-c226a93a9effa2ee1d5eb0fb1aa22befa78192fc.tar.gz
nixlib-c226a93a9effa2ee1d5eb0fb1aa22befa78192fc.tar.bz2
nixlib-c226a93a9effa2ee1d5eb0fb1aa22befa78192fc.tar.lz
nixlib-c226a93a9effa2ee1d5eb0fb1aa22befa78192fc.tar.xz
nixlib-c226a93a9effa2ee1d5eb0fb1aa22befa78192fc.tar.zst
nixlib-c226a93a9effa2ee1d5eb0fb1aa22befa78192fc.zip
pythonPackages.pyqt5: enable qtwebengine support
Diffstat (limited to 'pkgs/development/python-modules/pyqt')
-rw-r--r--pkgs/development/python-modules/pyqt/5.x.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/pyqt/5.x.nix b/pkgs/development/python-modules/pyqt/5.x.nix
index 3edf7e6e170b..84da1cf9ebf0 100644
--- a/pkgs/development/python-modules/pyqt/5.x.nix
+++ b/pkgs/development/python-modules/pyqt/5.x.nix
@@ -1,4 +1,4 @@
-{ lib, fetchurl, pythonPackages, pkgconfig, qtbase, qtsvg, qtwebkit, dbus_libs
+{ lib, fetchurl, pythonPackages, pkgconfig, qtbase, qtsvg, qtwebkit, qtwebengine, dbus_libs
 , lndir, makeWrapper, qmakeHook }:
 
 let
@@ -22,7 +22,7 @@ in mkPythonDerivation {
 
   buildInputs = [
     pkgconfig makeWrapper lndir
-    qtbase qtsvg qtwebkit dbus_libs qmakeHook
+    qtbase qtsvg qtwebkit qtwebengine dbus_libs qmakeHook
   ];
 
   propagatedBuildInputs = [ sip ];