Merge pull request #318038 from qwqawawow/master

python3Packages.terminaltexteffects,terminaltexteffects: init at 0.10.1
This commit is contained in:
Peder Bergebakken Sundt 2024-06-10 11:47:27 +02:00 committed by GitHub
commit 3fe5897cb0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 46 additions and 0 deletions

View File

@ -16986,6 +16986,12 @@
githubId = 2141853;
name = "Bang Lee";
};
qwqawawow = {
email = "eihqnh@outlook.com";
github = "qwqawawow";
githubId = 40905037;
name = "qwqawawow";
};
qyliss = {
email = "hi@alyssa.is";
github = "alyssais";

View File

@ -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";
};
}

View File

@ -34702,6 +34702,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 { };

View File

@ -15053,6 +15053,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 { };