Merge pull request #208411 from atorres1985-contrib/small-fixups

gay: 1.2.8 -> 1.2.9
This commit is contained in:
figsoda 2022-12-30 16:54:25 -05:00 committed by GitHub
commit f7c85bd720
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,21 +1,20 @@
{ lib, python3Packages }:
{ lib,
python3,
}:
python3Packages.buildPythonApplication rec {
python3.pkgs.buildPythonApplication rec {
pname = "gay";
version = "1.2.8";
version = "1.2.9";
src = python3Packages.fetchPypi {
src = python3.pkgs.fetchPypi {
inherit pname version;
sha256 = "sha256-/4IHqAoJthKvNyKqUgnGOQkgbC0aBEZ+x6dmKWUHXh0=";
hash = "sha256-x+RVVgQvJwV5j7DLYS7AnXb4OMJ4v+l0awUuonQIgzY=";
};
meta = with lib; {
description = "Colour your text / terminal to be more gay";
longDescription = ''
Applies pride flag colors to text, ala lolcat or displays a pride flag.
'';
homepage = "https://github.com/ms-jpq/gay";
maintainers = with maintainers; [ CodeLongAndProsper90 ];
description = "Colour your text / terminal to be more gay";
license = licenses.mit;
maintainers = with maintainers; [ AndersonTorres CodeLongAndProsper90 ];
};
}