python3Packages.libtmux: 0.53.0 -> 0.53.1 (#495073)

This commit is contained in:
Yohann Boniface
2026-03-01 02:04:00 +00:00
committed by GitHub
@@ -11,16 +11,16 @@
tmux,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "libtmux";
version = "0.53.0";
version = "0.53.1";
pyproject = true;
src = fetchFromGitHub {
owner = "tmux-python";
repo = "libtmux";
tag = "v${version}";
hash = "sha256-lGi5hjq1lcZtotCbNmwE0tPqwwEj5c9CJLx78eibg6Y=";
tag = "v${finalAttrs.version}";
hash = "sha256-mI6oqZ4FiWG8Xe70XV3JAm4Ula1r8JnNKLSVbs2QrGw=";
};
postPatch = ''
@@ -63,8 +63,8 @@ buildPythonPackage rec {
meta = {
description = "Typed scripting library / ORM / API wrapper for tmux";
homepage = "https://libtmux.git-pull.com/";
changelog = "https://github.com/tmux-python/libtmux/raw/${src.tag}/CHANGES";
changelog = "https://github.com/tmux-python/libtmux/raw/${finalAttrs.src.tag}/CHANGES";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ otavio ];
};
}
})