python3Packages.terminaltexteffects: init at 0.10.1

This commit is contained in:
qwqawawow
2024-06-08 23:58:46 +08:00
parent 3becb0c839
commit 640f859070
3 changed files with 40 additions and 0 deletions
@@ -0,0 +1,36 @@
{
lib,
buildPythonPackage,
fetchPypi,
poetry-core,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "terminaltexteffects";
version = "0.10.1";
pyproject = true;
disabled = pythonOlder "3.8";
# no tests on pypi, no tags on github
src = fetchPypi {
inherit pname version;
hash = "sha256-NyWPfdgLeXAxKPJOzB7j4aT+zjrURN59CGcv0Vt99y0=";
};
build-system = [ poetry-core ];
pythonImportsCheck = [ "terminaltexteffects" ];
meta = with lib; {
description = "A collection of visual effects that can be applied to terminal piped stdin text";
homepage = "https://chrisbuilds.github.io/terminaltexteffects";
changelog = "https://chrisbuilds.github.io/terminaltexteffects/changeblog/";
license = licenses.mit;
platforms = with platforms; unix;
maintainers = with maintainers; [ qwqawawow ];
mainProgram = "tte";
};
}
+2
View File
@@ -34696,6 +34696,8 @@ with pkgs;
termimage = callPackage ../tools/graphics/termimage { };
terminaltexteffects = with python3Packages; toPythonApplication terminaltexteffects ;
terminal-notifier = callPackage ../applications/misc/terminal-notifier { };
textplots = callPackage ../tools/graphics/textplots { };
+2
View File
@@ -15039,6 +15039,8 @@ self: super: with self; {
terminaltables = callPackage ../development/python-modules/terminaltables { };
terminaltexteffects = callPackage ../development/python-modules/terminaltexteffects { };
termplotlib = callPackage ../development/python-modules/termplotlib { };
termstyle = callPackage ../development/python-modules/termstyle { };