nixpkgs-suyu/pkgs/games/legendary-gl/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
737 B
Nix
Raw Normal View History

{ lib
, fetchFromGitHub
, buildPythonApplication
, pythonOlder
, requests
}:
buildPythonApplication rec {
pname = "legendary-gl"; # Name in pypi
2022-06-25 07:52:58 +02:00
version = "0.20.27";
src = fetchFromGitHub {
owner = "derrod";
repo = "legendary";
2022-06-02 08:14:49 +02:00
rev = "refs/tags/${version}";
2022-06-25 07:52:58 +02:00
sha256 = "sha256-h9WmeVONX19/pUBfE1T/OSMI/HkTKJiTfyyEJV/noB8=";
};
propagatedBuildInputs = [ requests ];
disabled = pythonOlder "3.8";
# no tests
doCheck = false;
pythonImportsCheck = [ "legendary" ];
meta = with lib; {
description = "A free and open-source Epic Games Launcher alternative";
homepage = "https://github.com/derrod/legendary";
license = licenses.gpl3;
maintainers = with maintainers; [ equirosa ];
};
}