lol

Merge pull request #170062 from applePrincess/gay-fix

gay: fix build

authored by

Rick van Schijndel and committed by
GitHub
417d8d46 2683fa17

+4 -8
+4 -8
pkgs/tools/misc/gay/default.nix
··· 1 - { lib, python3Packages, fetchFromGitHub }: 1 + { lib, python3Packages }: 2 2 3 3 python3Packages.buildPythonApplication rec { 4 4 pname = "gay"; 5 5 version = "1.2.8"; 6 6 7 - src = fetchFromGitHub { 8 - owner = "ms-jpq"; 9 - repo = "gay"; 10 - # The repo doesn't have any tags 11 - # This references version 1.2.8 12 - rev = "1e3e96815c68214533a925c86a52b0acf832a359"; 13 - sha256 = "sha256-vouEFybcz27bcw/CpAGjFY8NYWQC+V0IE7h1a8XufZ0="; 7 + src = python3Packages.fetchPypi { 8 + inherit pname version; 9 + sha256 = "sha256-/4IHqAoJthKvNyKqUgnGOQkgbC0aBEZ+x6dmKWUHXh0="; 14 10 }; 15 11 16 12 meta = with lib; {