python3Packages.textual-plotext: init at 1.0.1

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
This commit is contained in:
Anders Kaseorg
2026-02-06 15:27:54 -08:00
parent e6eae2ee21
commit 9a5b491bc0
2 changed files with 40 additions and 0 deletions
@@ -0,0 +1,38 @@
{
buildPythonPackage,
fetchPypi,
lib,
plotext,
poetry-core,
textual,
}:
buildPythonPackage rec {
pname = "textual-plotext";
version = "1.0.1";
pyproject = true;
# GitHub is missing tags: https://github.com/Textualize/textual-plotext/issues/18
src = fetchPypi {
pname = "textual_plotext";
inherit version;
hash = "sha256-g29TozFnVmCeGUEpo1wodWOOeVjCYfVB4KeU98mAEb4=";
};
build-system = [ poetry-core ];
dependencies = [
plotext
textual
];
pythonImportsCheck = [ "textual_plotext" ];
meta = {
description = "Textual widget wrapper for the Plotext plotting library";
homepage = "https://github.com/Textualize/textual-plotext";
changelog = "https://github.com/Textualize/textual-plotext/blob/main/ChangeLog.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ andersk ];
};
}
+2
View File
@@ -18916,6 +18916,8 @@ self: super: with self; {
textual-image = callPackage ../development/python-modules/textual-image { };
textual-plotext = callPackage ../development/python-modules/textual-plotext { };
textual-serve = callPackage ../development/python-modules/textual-serve { };
textual-slider = callPackage ../development/python-modules/textual-slider { };