python3Packages.textual: 6.4.0 -> 6.5.0 (#457519)

This commit is contained in:
kirillrdy
2025-11-02 10:53:34 +00:00
committed by GitHub
2 changed files with 9 additions and 2 deletions
@@ -46,6 +46,13 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTests = [
# AssertionError: assert None == 'word'
# https://github.com/tconbeer/textual-textarea/issues/312
"test_autocomplete"
"test_autocomplete_with_types"
];
pythonImportsCheck = [ "textual_textarea" ];
meta = {
@@ -30,14 +30,14 @@
buildPythonPackage rec {
pname = "textual";
version = "6.4.0";
version = "6.5.0";
pyproject = true;
src = fetchFromGitHub {
owner = "Textualize";
repo = "textual";
tag = "v${version}";
hash = "sha256-lwtgPJK62SntL0ThoIpmEq0Ngjf8wl73Q8PXjvut3ps=";
hash = "sha256-Z9KevcicU+mt1XglYOdGWnMbRa1zpbts+0D2nwtgAac=";
};
build-system = [ poetry-core ];