about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-05-01 09:40:29 -0500
committerGitHub <noreply@github.com>2023-05-01 09:40:29 -0500
commit76e2e65e39a3760582cca07b848f5719590190a7 (patch)
tree5424925087b20d7bed11fb57209ab9819b3f3c23
parent7fe4909bee9864df3d4bc196cb337aebaae32153 (diff)
parent2d8e0c3c986d9c7339dfde2d98f58d03949c2fb9 (diff)
downloadnixlib-76e2e65e39a3760582cca07b848f5719590190a7.tar
nixlib-76e2e65e39a3760582cca07b848f5719590190a7.tar.gz
nixlib-76e2e65e39a3760582cca07b848f5719590190a7.tar.bz2
nixlib-76e2e65e39a3760582cca07b848f5719590190a7.tar.lz
nixlib-76e2e65e39a3760582cca07b848f5719590190a7.tar.xz
nixlib-76e2e65e39a3760582cca07b848f5719590190a7.tar.zst
nixlib-76e2e65e39a3760582cca07b848f5719590190a7.zip
Merge pull request #229272 from kilianar/git-cola-4.2.1
git-cola: 4.1.0 -> 4.2.1
-rw-r--r--pkgs/applications/version-management/git-cola/default.nix12
1 files changed, 3 insertions, 9 deletions
diff --git a/pkgs/applications/version-management/git-cola/default.nix b/pkgs/applications/version-management/git-cola/default.nix
index e9959cd42dee..d84e61735811 100644
--- a/pkgs/applications/version-management/git-cola/default.nix
+++ b/pkgs/applications/version-management/git-cola/default.nix
@@ -2,22 +2,16 @@
 
 python3Packages.buildPythonApplication rec {
   pname = "git-cola";
-  version = "4.1.0";
+  version = "4.2.1";
 
   src = fetchFromGitHub {
     owner = "git-cola";
     repo = "git-cola";
     rev = "refs/tags/v${version}";
-    hash = "sha256-s+acQo9b+ZQ31qXBf0m8ajXYuYEQzNybmX9nw+c0DQY=";
+    hash = "sha256-VAn4zXypOugPIVyXQ/8Yt0rCDM7hVdIY+jpmoTHqssU=";
   };
 
-  # TODO: remove in the next release since upstream removed pytest-flake8
-  # https://github.com/git-cola/git-cola/commit/6c5c5c6c888ee1a095fc1ca5521af9a03b833205
-  postPatch = ''
-    substituteInPlace pytest.ini \
-      --replace "--flake8" ""
-  '';
-
+  buildInputs = [ qt5.qtwayland ];
   propagatedBuildInputs = with python3Packages; [ git pyqt5 qtpy send2trash ];
   nativeBuildInputs = [ gettext qt5.wrapQtAppsHook ];
   nativeCheckInputs = with python3Packages; [ git pytestCheckHook ];