python3Packages.textual: 8.2.6 -> 8.2.7

Diff: https://github.com/Textualize/textual/compare/v8.2.6...v8.2.7

Changelog: https://github.com/Textualize/textual/blob/v8.2.7/CHANGELOG.md
This commit is contained in:
Gaetan Lepage
2026-05-26 13:19:19 +00:00
parent 97581bc7ab
commit 3caf5331be
@@ -35,16 +35,17 @@
time-machine,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "textual";
version = "8.2.6";
version = "8.2.7";
pyproject = true;
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "Textualize";
repo = "textual";
tag = "v${version}";
hash = "sha256-VSgwa817ovlbKnuJx6KCy3osund8PXZ4Sqlh02TkxGA=";
tag = "v${finalAttrs.version}";
hash = "sha256-jRTdxVpeRk8gAur5+VpLVVghBdYenXysoEFRBfczkR4=";
};
build-system = [ poetry-core ];
@@ -116,8 +117,8 @@ buildPythonPackage rec {
meta = {
description = "TUI framework for Python inspired by modern web development";
homepage = "https://github.com/Textualize/textual";
changelog = "https://github.com/Textualize/textual/blob/${src.tag}/CHANGELOG.md";
changelog = "https://github.com/Textualize/textual/blob/${finalAttrs.src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ gepbird ];
};
}
})