From 3e924be8a85a134df4fa5169adfb871f54473865 Mon Sep 17 00:00:00 2001 From: Otavio Salvador Date: Sun, 14 Jan 2024 20:29:34 +0000 Subject: [PATCH 1/2] tmuxp: 1.29.0 -> 1.34.0 Fixes: ,---- | error: builder for '/nix/store/n9ram8wgn9niqm78wraxh4l21c4rfl2q-tmuxp-1.29.0.drv' failed with exit code 1; | last 10 log lines: | > Creating a wheel... | > * Getting build dependencies for wheel... | > * Building wheel... | > Successfully built tmuxp-1.29.0-py3-none-any.whl | > Finished creating a wheel... | > Finished executing pypaBuildPhase | > Running phase: pythonRuntimeDepsCheckHook | > Executing pythonRuntimeDepsCheck | > Checking runtime dependencies for tmuxp-1.29.0-py3-none-any.whl | > - libtmux<0.24.0,>=0.23.0 not satisfied by version 0.25.0 | For full logs, run 'nix log /nix/store/n9ram8wgn9niqm78wraxh4l21c4rfl2q-tmuxp-1.29.0.drv'. `---- Signed-off-by: Otavio Salvador --- pkgs/tools/misc/tmuxp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/tmuxp/default.nix b/pkgs/tools/misc/tmuxp/default.nix index 8babec312268..a32a0f0b14ce 100644 --- a/pkgs/tools/misc/tmuxp/default.nix +++ b/pkgs/tools/misc/tmuxp/default.nix @@ -2,12 +2,12 @@ python3Packages.buildPythonApplication rec { pname = "tmuxp"; - version = "1.29.0"; + version = "1.34.0"; format = "pyproject"; src = fetchPypi { inherit pname version; - hash = "sha256-MiXG4MVzomyc4LjovPsvhmPngtJv85s6Ypo/Cm2Whho="; + hash = "sha256-G93YtgXo4li+tLWKgJFaxx4Ax4sK4F+vK6M3WTXIeiU="; }; nativeBuildInputs = [ From cac10ee05182c5298764a4e623da0a1be8f92f55 Mon Sep 17 00:00:00 2001 From: Otavio Salvador Date: Sun, 14 Jan 2024 17:40:20 -0300 Subject: [PATCH 2/2] tmuxp: add myself as co-maintainer Signed-off-by: Otavio Salvador --- pkgs/tools/misc/tmuxp/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/misc/tmuxp/default.nix b/pkgs/tools/misc/tmuxp/default.nix index a32a0f0b14ce..1d1eaa53e7bb 100644 --- a/pkgs/tools/misc/tmuxp/default.nix +++ b/pkgs/tools/misc/tmuxp/default.nix @@ -37,7 +37,7 @@ python3Packages.buildPythonApplication rec { homepage = "https://tmuxp.git-pull.com/"; changelog = "https://github.com/tmux-python/tmuxp/raw/v${version}/CHANGES"; license = licenses.mit; - maintainers = with maintainers; [ peterhoeg ]; + maintainers = with maintainers; [ peterhoeg otavio ]; mainProgram = "tmuxp"; }; }