python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / gay / default.nix
blob471ac86afcb7efcbae08df0e1f455d46541a5d36
1 { lib, python3Packages }:
3 python3Packages.buildPythonApplication rec {
4   pname = "gay";
5   version = "1.2.8";
7   src = python3Packages.fetchPypi {
8     inherit pname version;
9     sha256 = "sha256-/4IHqAoJthKvNyKqUgnGOQkgbC0aBEZ+x6dmKWUHXh0=";
10   };
12   meta = with lib; {
13     description = "Colour your text / terminal to be more gay";
14     longDescription = ''
15       Applies pride flag colors to text, ala lolcat or displays a pride flag.
16     '';
17     homepage = "https://github.com/ms-jpq/gay";
18     maintainers = with maintainers; [ CodeLongAndProsper90 ];
19     license = licenses.mit;
20   };