Merge pull request #269249 from blitz/git-machete-unbreak

git-machete: 3.17.9 -> 3.20.0
This commit is contained in:
Jacek Galowicz 2023-11-23 14:21:34 +01:00 committed by GitHub
commit 7301329494
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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