textualeffects: init at 0.1.3

textualeffects: integrate code-review comments

textualeffects: integrate code-review comments
This commit is contained in:
Gaël James
2025-02-10 20:43:28 +01:00
parent 8475ada803
commit 6f95ea0926
2 changed files with 40 additions and 0 deletions
@@ -0,0 +1,38 @@
{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
hatchling,
terminaltexteffects,
}:
buildPythonPackage rec {
pname = "textualeffects";
version = "0.1.3";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchPypi {
inherit pname version;
hash = "sha256-s6LrsCJu/ubDIXQqxQlY2HVbzDc9+FtUE9oBSulUsm8=";
};
build-system = [ hatchling ];
dependencies = [ terminaltexteffects ];
pythonImportsCheck = [ "textualeffects" ];
# no tests implemented
doCheck = false;
meta = {
description = "Visual effects for Textual, a TerminalTextEffects wrapper";
homepage = "https://github.com/ggozad/textualeffects";
changelog = "https://github.com/ggozad/textualeffects/blob/v${version}/CHANGES.txt";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ gaelj ];
};
}
+2
View File
@@ -16237,6 +16237,8 @@ self: super: with self; {
textual-universal-directorytree = callPackage ../development/python-modules/textual-universal-directorytree { };
textualeffects = callPackage ../development/python-modules/textualeffects { };
textual-textarea = callPackage ../development/python-modules/textual-textarea { };
testbook = callPackage ../development/python-modules/testbook { };