depot/third_party/nixpkgs/pkgs/development/python-modules/terminaltexteffects/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

35 lines
878 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
poetry-core,
pythonOlder,
}:
buildPythonPackage rec {
pname = "terminaltexteffects";
version = "0.11.0";
pyproject = true;
disabled = pythonOlder "3.8";
# no tests on pypi, no tags on github
src = fetchPypi {
inherit pname version;
hash = "sha256-FDDLc7oAOgSpaxmuS6Wzej+vEOuSx3WT2ntpfoET3LI=";
};
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";
};
}