depot/third_party/nixpkgs/pkgs/by-name/ga/gay/package.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

22 lines
505 B
Nix

{ lib,
python3,
fetchPypi,
}:
python3.pkgs.buildPythonApplication rec {
pname = "gay";
version = "1.2.9";
src = fetchPypi {
inherit pname version;
hash = "sha256-x+RVVgQvJwV5j7DLYS7AnXb4OMJ4v+l0awUuonQIgzY=";
};
meta = with lib; {
homepage = "https://github.com/ms-jpq/gay";
description = "Colour your text / terminal to be more gay";
license = licenses.mit;
maintainers = with maintainers; [ AndersonTorres CodeLongAndProsper90 ];
mainProgram = "gay";
};
}