nixpkgs/pkgs/games/legendary-gl/default.nix
2023-01-06 08:48:48 +00:00

38 lines
793 B
Nix

{ lib
, gitUpdater
, fetchFromGitHub
, buildPythonApplication
, pythonOlder
, requests
}:
buildPythonApplication rec {
pname = "legendary-gl"; # Name in pypi
version = "0.20.32";
src = fetchFromGitHub {
owner = "derrod";
repo = "legendary";
rev = "refs/tags/${version}";
sha256 = "sha256-MsvhVS3lqhgBJ+S/cjXFP70I3rM5WBYT7TyVlRWhNWw=";
};
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 ];
};
passthru.updateScript = gitUpdater { };
}