textualeffects: init at 0.1.3
textualeffects: integrate code-review comments textualeffects: integrate code-review comments
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user