biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / textual-textarea / default.nix
blob74293ee3c2e42f0e59f2b13ec7e0bb355efcfd5c
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   poetry-core,
6   pyperclip,
7   textual,
8 }:
10 buildPythonPackage rec {
11   pname = "textual-textarea";
12   version = "0.14.2";
13   pyproject = true;
15   src = fetchPypi {
16     pname = "textual_textarea";
17     inherit version;
18     hash = "sha256-AJU7BBoev6pBrLhvbfF4I7l+E8YnO5jCD5OIsNf6NW0=";
19   };
21   build-system = [
22     poetry-core
23   ];
25   dependencies = [
26     pyperclip
27     textual
28   ];
30   pythonImportsCheck = [
31     "textual_textarea"
32   ];
34   meta = {
35     description = "A text area (multi-line input) with syntax highlighting for Textual";
36     homepage = "https://pypi.org/project/textual-textarea/";
37     license = lib.licenses.mit;
38     maintainers = with lib.maintainers; [ pcboy ];
39   };