From 1652a667a5fde99c12eecb0232dae9177c74a53f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 30 Dec 2022 10:29:18 +0000 Subject: [PATCH 1/2] git-machete: 3.13.0 -> 3.13.2 --- pkgs/applications/version-management/git-machete/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/version-management/git-machete/default.nix b/pkgs/applications/version-management/git-machete/default.nix index 9871cbe87a88..97fee6dea254 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.13.0"; + version = "3.13.2"; src = fetchFromGitHub { owner = "virtuslab"; repo = pname; rev = "v${version}"; - sha256 = "sha256-Ku142NjiDTxiZ50Sm6vZs5ZHJ25oALnLQw8ThWqQ2rE="; + sha256 = "sha256-K9oJvvESHWCJFSgqycA7N4cG7WbTDwXZExnXUs4Qlp8="; }; nativeBuildInputs = [ installShellFiles ]; From ed9016bc71d302e2c1bf6da3d2c5beddfa4f1258 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 30 Dec 2022 17:46:26 +0100 Subject: [PATCH 2/2] git-machete: add changelog to meta --- .../version-management/git-machete/default.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/version-management/git-machete/default.nix b/pkgs/applications/version-management/git-machete/default.nix index 97fee6dea254..0212ea9b89d1 100644 --- a/pkgs/applications/version-management/git-machete/default.nix +++ b/pkgs/applications/version-management/git-machete/default.nix @@ -18,12 +18,16 @@ buildPythonApplication rec { owner = "virtuslab"; repo = pname; rev = "v${version}"; - sha256 = "sha256-K9oJvvESHWCJFSgqycA7N4cG7WbTDwXZExnXUs4Qlp8="; + hash = "sha256-K9oJvvESHWCJFSgqycA7N4cG7WbTDwXZExnXUs4Qlp8="; }; nativeBuildInputs = [ installShellFiles ]; - checkInputs = [ git pytest-mock pytestCheckHook ]; + checkInputs = [ + git + pytest-mock + pytestCheckHook + ]; postInstall = '' installShellCompletion --bash --name git-machete completion/git-machete.completion.bash @@ -42,6 +46,7 @@ buildPythonApplication rec { meta = with lib; { homepage = "https://github.com/VirtusLab/git-machete"; description = "Git repository organizer and rebase/merge workflow automation tool"; + changelog = "https://github.com/VirtusLab/git-machete/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ blitz ]; };