f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
35 lines
878 B
Nix
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";
|
|
};
|
|
}
|