Merge pull request #170062 from applePrincess/gay-fix

gay: fix build
This commit is contained in:
Rick van Schijndel 2022-04-25 06:46:53 +02:00 committed by GitHub
commit 417d8d46e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,16 +1,12 @@
{ lib, python3Packages, fetchFromGitHub }:
{ lib, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "gay";
version = "1.2.8";
src = fetchFromGitHub {
owner = "ms-jpq";
repo = "gay";
# The repo doesn't have any tags
# This references version 1.2.8
rev = "1e3e96815c68214533a925c86a52b0acf832a359";
sha256 = "sha256-vouEFybcz27bcw/CpAGjFY8NYWQC+V0IE7h1a8XufZ0=";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "sha256-/4IHqAoJthKvNyKqUgnGOQkgbC0aBEZ+x6dmKWUHXh0=";
};
meta = with lib; {