13 buildPythonPackage rec {
14 pname = "textual-textarea";
18 disabled = pythonOlder "3.8";
20 src = fetchFromGitHub {
22 repo = "textual-textarea";
23 rev = "refs/tags/v${version}";
24 hash = "sha256-tmbSCU1VgxR9aXG22UVpweD71dVmhKSRBTDm1Gf33jM=";
27 build-system = [ poetry-core ];
32 ] ++ textual.optional-dependencies.syntax;
39 pythonImportsCheck = [ "textual_textarea" ];
42 description = "A text area (multi-line input) with syntax highlighting for Textual";
43 homepage = "https://github.com/tconbeer/textual-textarea";
44 changelog = "https://github.com/tconbeer/textual-textarea/releases/tag/v${version}";
45 license = lib.licenses.mit;
46 maintainers = with lib.maintainers; [ pcboy ];