{ lib, buildPythonPackage, fetchPypi, poetry-core, }: buildPythonPackage rec { pname = "terminaltexteffects"; version = "0.12.1"; pyproject = true; # no tests on pypi, no tags on github src = fetchPypi { inherit pname version; hash = "sha256-0rBLOPm8A/xDSskyyr/UNEs19Yp+/ZNwpiorsaFi/bg="; }; build-system = [ poetry-core ]; pythonImportsCheck = [ "terminaltexteffects" ]; meta = { description = "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 = lib.licenses.mit; platforms = lib.platforms.unix; maintainers = [ ]; mainProgram = "tte"; }; }