Merge pull request #218818 from thiagokokada/git-cola-darwin
git-cola: update dependencies and make it work in darwin
This commit is contained in:
commit
de098f6584
1 changed files with 18 additions and 10 deletions
|
@ -1,9 +1,6 @@
|
||||||
{ lib, fetchFromGitHub, python3Packages, gettext, git, qt5 }:
|
{ stdenv, lib, fetchFromGitHub, python3Packages, gettext, git, qt5 }:
|
||||||
|
|
||||||
let
|
python3Packages.buildPythonApplication rec {
|
||||||
inherit (python3Packages) buildPythonApplication pyqt5 sip_4 pyinotify qtpy;
|
|
||||||
|
|
||||||
in buildPythonApplication rec {
|
|
||||||
pname = "git-cola";
|
pname = "git-cola";
|
||||||
version = "4.1.0";
|
version = "4.1.0";
|
||||||
|
|
||||||
|
@ -14,11 +11,23 @@ in buildPythonApplication rec {
|
||||||
hash = "sha256-s+acQo9b+ZQ31qXBf0m8ajXYuYEQzNybmX9nw+c0DQY=";
|
hash = "sha256-s+acQo9b+ZQ31qXBf0m8ajXYuYEQzNybmX9nw+c0DQY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ git gettext ];
|
# TODO: remove in the next release since upstream removed pytest-flake8
|
||||||
propagatedBuildInputs = [ pyqt5 sip_4 pyinotify qtpy ];
|
# https://github.com/git-cola/git-cola/commit/6c5c5c6c888ee1a095fc1ca5521af9a03b833205
|
||||||
nativeBuildInputs = [ qt5.wrapQtAppsHook ];
|
postPatch = ''
|
||||||
|
substituteInPlace pytest.ini \
|
||||||
|
--replace "--flake8" ""
|
||||||
|
'';
|
||||||
|
|
||||||
doCheck = false;
|
propagatedBuildInputs = with python3Packages; [ git pyqt5 qtpy send2trash ];
|
||||||
|
nativeBuildInputs = [ gettext qt5.wrapQtAppsHook ];
|
||||||
|
nativeCheckInputs = with python3Packages; [ git pytestCheckHook ];
|
||||||
|
|
||||||
|
disabledTestPaths = [
|
||||||
|
"qtpy/"
|
||||||
|
"contrib/win32"
|
||||||
|
] ++ lib.optionals stdenv.isDarwin [
|
||||||
|
"cola/inotify.py"
|
||||||
|
];
|
||||||
|
|
||||||
preFixup = ''
|
preFixup = ''
|
||||||
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
|
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
|
||||||
|
@ -28,7 +37,6 @@ in buildPythonApplication rec {
|
||||||
homepage = "https://github.com/git-cola/git-cola";
|
homepage = "https://github.com/git-cola/git-cola";
|
||||||
description = "A sleek and powerful Git GUI";
|
description = "A sleek and powerful Git GUI";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
platforms = platforms.linux;
|
|
||||||
maintainers = [ maintainers.bobvanderlinden ];
|
maintainers = [ maintainers.bobvanderlinden ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue