vifm: 0.13 -> 0.14 (#380559)
[NixPkgs.git] / pkgs / by-name / ga / gay / package.nix
blob6afab31a77b8c8a4ff88d3fb49dcd023ede868fa
2   lib,
3   python3,
4   fetchPypi,
5 }:
7 python3.pkgs.buildPythonApplication rec {
8   pname = "gay";
9   version = "1.2.9";
11   src = fetchPypi {
12     inherit pname version;
13     hash = "sha256-x+RVVgQvJwV5j7DLYS7AnXb4OMJ4v+l0awUuonQIgzY=";
14   };
16   meta = with lib; {
17     homepage = "https://github.com/ms-jpq/gay";
18     description = "Colour your text / terminal to be more gay";
19     license = licenses.mit;
20     maintainers = with maintainers; [ CodeLongAndProsper90 ];
21     mainProgram = "gay";
22   };