git-cola: doesn't need QtWebKit

QtWebKit is only used if QtWebEngine is not available
This commit is contained in:
Dmitry Kalinkin 2018-12-30 10:21:38 -05:00
parent 16f11dff3f
commit eecc33608f
No known key found for this signature in database
GPG Key ID: 06AF1D3C38F04E0E

View File

@ -1,7 +1,8 @@
{ stdenv, fetchFromGitHub, pythonPackages, gettext, git }:
let
inherit (pythonPackages) buildPythonApplication pyqt5_with_qtwebkit sip pyinotify;
inherit (pythonPackages) buildPythonApplication pyqt5 sip pyinotify;
in buildPythonApplication rec {
name = "git-cola-${version}";
version = "3.2";
@ -14,7 +15,7 @@ in buildPythonApplication rec {
};
buildInputs = [ git gettext ];
propagatedBuildInputs = [ pyqt5_with_qtwebkit sip pyinotify ];
propagatedBuildInputs = [ pyqt5 sip pyinotify ];
doCheck = false;