Skip to content

Commit

Permalink
textualeffects: integrate code-review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
gaelj committed Jan 10, 2025
1 parent 510afc1 commit 97e8ff2
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions pkgs/development/python-modules/textualeffects/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
buildPythonPackage rec {
pname = "textualeffects";
version = "0.1.3";
format = "pyproject";
pyproject = true;

disabled = pythonOlder "3.10";

Expand All @@ -19,24 +19,20 @@ buildPythonPackage rec {
hash = "sha256-s6LrsCJu/ubDIXQqxQlY2HVbzDc9+FtUE9oBSulUsm8=";
};

propagatedBuildInputs =
[
terminaltexteffects
]
++ (with python3Packages; [
hatchling
]);
build-system = with python3Packages; [ hatchling ];

dependencies = [ terminaltexteffects ];

pythonImportsCheck = [ "textualeffects" ];

# no tests implemented
doCheck = false;

meta = with lib; {
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 = licenses.mit;
maintainers = with maintainers; [ gaelj ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ gaelj ];
};
}

0 comments on commit 97e8ff2

Please sign in to comment.