depot/third_party/nixpkgs/pkgs/tools/misc/gay/default.nix
Default email 9c6ee729d6 Project import generated by Copybara.
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
2023-07-15 19:15:38 +02:00

21 lines
480 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 ];
};
}