nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python3Packages.textual: 6.2.1 -> 6.3.0

Diff: https://github.com/Textualize/textual/compare/v6.2.1...v6.3.0

Changelog: https://github.com/Textualize/textual/blob/v6.3.0/CHANGELOG.md

+5 -2
+5 -2
pkgs/development/python-modules/textual/default.nix
··· 29 29 30 30 buildPythonPackage rec { 31 31 pname = "textual"; 32 - version = "6.2.1"; 32 + version = "6.3.0"; 33 33 pyproject = true; 34 34 35 35 src = fetchFromGitHub { 36 36 owner = "Textualize"; 37 37 repo = "textual"; 38 38 tag = "v${version}"; 39 - hash = "sha256-2myMafLHxJNw3EWLvlvg0wWznY6m04BOQjhYtRvYTP8="; 39 + hash = "sha256-3KxSuyfczyulbpysAO8mF7wvzd+807Lj6l6g0TygBnI="; 40 40 }; 41 41 42 42 build-system = [ poetry-core ]; 43 43 44 + pythonRelaxDeps = [ 45 + "rich" 46 + ]; 44 47 dependencies = [ 45 48 markdown-it-py 46 49 platformdirs