python3Packages.textual-plotext: init at 1.0.1
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user