biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / terminaltexteffects / default.nix
blob27b07d56158881de10389549ad5d9b276f2436b1
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   poetry-core,
6   pythonOlder,
7 }:
9 buildPythonPackage rec {
10   pname = "terminaltexteffects";
11   version = "0.11.0";
12   pyproject = true;
14   disabled = pythonOlder "3.8";
16    # no tests on pypi, no tags on github
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-FDDLc7oAOgSpaxmuS6Wzej+vEOuSx3WT2ntpfoET3LI=";
20   };
22   build-system = [ poetry-core ];
24   pythonImportsCheck = [ "terminaltexteffects" ];
26   meta = with lib; {
27     description = "A collection of visual effects that can be applied to terminal piped stdin text";
28     homepage = "https://chrisbuilds.github.io/terminaltexteffects";
29     changelog = "https://chrisbuilds.github.io/terminaltexteffects/changeblog/";
30     license = licenses.mit;
31     platforms = with platforms; unix;
32     maintainers = with maintainers; [ qwqawawow ];
33     mainProgram = "tte";
34   };