forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git] / pkgs / by-name / ga / gay / package.nix
blobd1129702f867ae0d8f24a95f7437bfc0da8f0873
1 { lib,
2   python3,
3   fetchPypi,
4 }:
6 python3.pkgs.buildPythonApplication rec {
7   pname = "gay";
8   version = "1.2.9";
10   src = fetchPypi {
11     inherit pname version;
12     hash = "sha256-x+RVVgQvJwV5j7DLYS7AnXb4OMJ4v+l0awUuonQIgzY=";
13   };
15   meta = with lib; {
16     homepage = "https://github.com/ms-jpq/gay";
17     description = "Colour your text / terminal to be more gay";
18     license = licenses.mit;
19     maintainers = with maintainers; [ AndersonTorres CodeLongAndProsper90 ];
20     mainProgram = "gay";
21   };