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