Merge pull request #208337 from r-ryantm/auto-update/git-machete

git-machete: 3.13.0 -> 3.13.2

authored by

figsoda and committed by
GitHub
33bd4c9c fe51ed28

+8 -3
+8 -3
pkgs/applications/version-management/git-machete/default.nix
··· 12 13 buildPythonApplication rec { 14 pname = "git-machete"; 15 - version = "3.13.0"; 16 17 src = fetchFromGitHub { 18 owner = "virtuslab"; 19 repo = pname; 20 rev = "v${version}"; 21 - sha256 = "sha256-Ku142NjiDTxiZ50Sm6vZs5ZHJ25oALnLQw8ThWqQ2rE="; 22 }; 23 24 nativeBuildInputs = [ installShellFiles ]; 25 26 - checkInputs = [ git pytest-mock pytestCheckHook ]; 27 28 postInstall = '' 29 installShellCompletion --bash --name git-machete completion/git-machete.completion.bash ··· 42 meta = with lib; { 43 homepage = "https://github.com/VirtusLab/git-machete"; 44 description = "Git repository organizer and rebase/merge workflow automation tool"; 45 license = licenses.mit; 46 maintainers = with maintainers; [ blitz ]; 47 };
··· 12 13 buildPythonApplication rec { 14 pname = "git-machete"; 15 + version = "3.13.2"; 16 17 src = fetchFromGitHub { 18 owner = "virtuslab"; 19 repo = pname; 20 rev = "v${version}"; 21 + hash = "sha256-K9oJvvESHWCJFSgqycA7N4cG7WbTDwXZExnXUs4Qlp8="; 22 }; 23 24 nativeBuildInputs = [ installShellFiles ]; 25 26 + checkInputs = [ 27 + git 28 + pytest-mock 29 + pytestCheckHook 30 + ]; 31 32 postInstall = '' 33 installShellCompletion --bash --name git-machete completion/git-machete.completion.bash ··· 46 meta = with lib; { 47 homepage = "https://github.com/VirtusLab/git-machete"; 48 description = "Git repository organizer and rebase/merge workflow automation tool"; 49 + changelog = "https://github.com/VirtusLab/git-machete/releases/tag/v${version}"; 50 license = licenses.mit; 51 maintainers = with maintainers; [ blitz ]; 52 };