From 170cf11b98cf18eb36302dc4098d411d6b375beb Mon Sep 17 00:00:00 2001 From: AndersonTorres Date: Fri, 30 Dec 2022 18:33:00 -0300 Subject: [PATCH] gay: 1.2.8 -> 1.2.9 --- pkgs/tools/misc/gay/default.nix | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/pkgs/tools/misc/gay/default.nix b/pkgs/tools/misc/gay/default.nix index 471ac86afcb7..034dc7af7979 100644 --- a/pkgs/tools/misc/gay/default.nix +++ b/pkgs/tools/misc/gay/default.nix @@ -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 ]; }; }