about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorJacek Galowicz <jacek@galowicz.de>2023-11-23 14:21:34 +0100
committerGitHub <noreply@github.com>2023-11-23 14:21:34 +0100
commit7301329494ea972ac4520a76687047a85ebdfa73 (patch)
tree7eb2eebb0f68d67501e29d9f11d04ddbe6a76225 /pkgs/applications
parentfe69c517e1a869b99460d0f3176aa3045bcdb3b3 (diff)
parent0e858267b37884abc8721c49acfd172f53b04893 (diff)
Merge pull request #269249 from blitz/git-machete-unbreak
git-machete: 3.17.9 -> 3.20.0
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/version-management/git-machete/default.nix10
1 files changed, 8 insertions, 2 deletions
diff --git a/pkgs/applications/version-management/git-machete/default.nix b/pkgs/applications/version-management/git-machete/default.nix
index a4d1ffb090f08..26cce4b25c9d7 100644
--- a/pkgs/applications/version-management/git-machete/default.nix
+++ b/pkgs/applications/version-management/git-machete/default.nix
@@ -12,13 +12,13 @@
 
 buildPythonApplication rec {
   pname = "git-machete";
-  version = "3.17.9";
+  version = "3.20.0";
 
   src = fetchFromGitHub {
     owner = "virtuslab";
     repo = pname;
     rev = "v${version}";
-    hash = "sha256-oU4c57XU/DLGjOl/CyCt6oG3QaB2xnrOEg+sUAd7sww=";
+    hash = "sha256-6TntyAkDIcCVcAsNdAlgvKYO7Db0oMDWKW92rMRIDI4=";
   };
 
   nativeBuildInputs = [ installShellFiles ];
@@ -29,6 +29,12 @@ buildPythonApplication rec {
     pytestCheckHook
   ];
 
+  disabledTests = [
+    # Requires fully functioning shells including zsh modules and bash
+    # completion.
+    "completion_e2e"
+  ];
+
   postInstall = ''
     installShellCompletion --bash --name git-machete completion/git-machete.completion.bash
     installShellCompletion --zsh --name _git-machete completion/git-machete.completion.zsh