Merge pull request #40371 from Ma27/git-cola/qt5-port

git-cola: port to qt5
This commit is contained in:
Robert Schütz 2018-05-11 20:08:24 +02:00 committed by GitHub
commit 45ce588000
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;