Merge pull request #249062 from fabaff/textual-bump

python311Packages.textual: 0.28.1 -> 0.32.0

authored by

OTABI Tomoya and committed by
GitHub
d487fe26 df7224ff

+23 -17
+23 -17
pkgs/development/python-modules/textual/default.nix
··· 1 1 { lib 2 + , aiohttp 2 3 , buildPythonPackage 4 + , click 3 5 , fetchFromGitHub 4 - , poetry-core 5 - , mkdocs-exclude 6 - , markdown-it-py 7 - , mdit-py-plugins 8 - , linkify-it-py 9 6 , importlib-metadata 10 - , rich 11 - , typing-extensions 12 - , aiohttp 13 - , click 14 7 , jinja2 8 + , linkify-it-py 9 + , markdown-it-py 10 + , mdit-py-plugins 11 + , mkdocs-exclude 15 12 , msgpack 13 + , poetry-core 16 14 , pytest-aiohttp 17 15 , pytestCheckHook 18 16 , pythonOlder 17 + , rich 19 18 , syrupy 20 19 , time-machine 20 + , typing-extensions 21 21 }: 22 22 23 23 buildPythonPackage rec { 24 24 pname = "textual"; 25 - version = "0.28.1"; 25 + version = "0.32.0"; 26 26 format = "pyproject"; 27 27 28 28 disabled = pythonOlder "3.7"; ··· 31 31 owner = "Textualize"; 32 32 repo = pname; 33 33 rev = "refs/tags/v${version}"; 34 - hash = "sha256-tSCMKM9Wv4crl6SLcIc2r6QY6U3RBTW8yfAjkYLV3eE="; 34 + hash = "sha256-hsqVZoQ3PJm0GD5EVfmtwD/7ZcN+xu3kCBbS1q+atf8="; 35 35 }; 36 36 37 37 nativeBuildInputs = [ ··· 39 39 ]; 40 40 41 41 propagatedBuildInputs = [ 42 - rich 43 - markdown-it-py 44 - mdit-py-plugins 45 - linkify-it-py 46 - importlib-metadata 47 42 aiohttp 48 43 click 49 - msgpack 44 + importlib-metadata 45 + linkify-it-py 46 + markdown-it-py 47 + mdit-py-plugins 50 48 mkdocs-exclude 49 + msgpack 50 + rich 51 51 ] ++ lib.optionals (pythonOlder "3.11") [ 52 52 typing-extensions 53 53 ]; ··· 63 63 disabledTestPaths = [ 64 64 # snapshot tests require syrupy<4 65 65 "tests/snapshot_tests/test_snapshots.py" 66 + ]; 67 + 68 + disabledTests = [ 69 + # Assertion issues 70 + "test_textual_env_var" 71 + "test_softbreak_split_links_rendered_correctly" 66 72 ]; 67 73 68 74 pythonImportsCheck = [