treewide: use pythonPackages.pyqt5_with_qtwebkit where QtWebKit is needed

This commit is contained in:
Dmitry Kalinkin
2018-12-27 09:14:21 -05:00
parent 3c198294e7
commit 20d60c8238
9 changed files with 14 additions and 10 deletions
@@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub, pythonPackages, gettext, git }:
let
inherit (pythonPackages) buildPythonApplication pyqt5 sip pyinotify;
inherit (pythonPackages) buildPythonApplication pyqt5_with_qtwebkit sip pyinotify;
in buildPythonApplication rec {
name = "git-cola-${version}";
version = "3.2";
@@ -14,7 +14,7 @@ in buildPythonApplication rec {
};
buildInputs = [ git gettext ];
propagatedBuildInputs = [ pyqt5 sip pyinotify ];
propagatedBuildInputs = [ pyqt5_with_qtwebkit sip pyinotify ];
doCheck = false;