git-cola: port to qt5

`git-cola` is a simple GUI `git` wrapper based on QT. Since 2.7
(namely https://github.com/git-cola/git-cola/commit/293364b45c4cbf3faff3fd7aba79b474d0abc845)
it supports QT5 which provides a nicer inteface.

See #33248
This commit is contained in:
Maximilian Bosch
2018-05-11 18:31:49 +02:00
parent 716d877d0f
commit 1a69587040
@@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub, pythonPackages, makeWrapper, gettext, git }: { stdenv, fetchFromGitHub, pythonPackages, makeWrapper, gettext, git }:
let let
inherit (pythonPackages) buildPythonApplication pyqt4 sip pyinotify python mock; inherit (pythonPackages) buildPythonApplication pyqt5 sip pyinotify python mock;
in buildPythonApplication rec { in buildPythonApplication rec {
name = "git-cola-${version}"; name = "git-cola-${version}";
version = "3.1"; version = "3.1";
@@ -14,7 +14,7 @@ in buildPythonApplication rec {
}; };
buildInputs = [ git gettext ]; buildInputs = [ git gettext ];
propagatedBuildInputs = [ pyqt4 sip pyinotify ]; propagatedBuildInputs = [ pyqt5 sip pyinotify ];
doCheck = false; doCheck = false;