depot/third_party/nixpkgs/pkgs/development/python-modules/textual-textarea/default.nix
Default email 472aeafc57 Project import generated by Copybara.
GitOrigin-RevId: c31898adf5a8ed202ce5bea9f347b1c6871f32d1
2024-10-04 18:56:33 +02:00

40 lines
727 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
poetry-core,
pyperclip,
textual,
}:
buildPythonPackage rec {
pname = "textual-textarea";
version = "0.14.2";
pyproject = true;
src = fetchPypi {
pname = "textual_textarea";
inherit version;
hash = "sha256-AJU7BBoev6pBrLhvbfF4I7l+E8YnO5jCD5OIsNf6NW0=";
};
build-system = [
poetry-core
];
dependencies = [
pyperclip
textual
];
pythonImportsCheck = [
"textual_textarea"
];
meta = {
description = "A text area (multi-line input) with syntax highlighting for Textual";
homepage = "https://pypi.org/project/textual-textarea/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ pcboy ];
};
}