depot/third_party/nixpkgs/pkgs/games/legendary-gl/default.nix
Default email 4cb23072fc Project import generated by Copybara.
GitOrigin-RevId: 6d8215281b2f87a5af9ed7425a26ac575da0438f
2022-01-20 00:45:15 +01:00

34 lines
722 B
Nix

{ lib
, fetchFromGitHub
, buildPythonApplication
, pythonOlder
, requests
}:
buildPythonApplication rec {
pname = "legendary-gl"; # Name in pypi
version = "0.20.24";
src = fetchFromGitHub {
owner = "derrod";
repo = "legendary";
rev = version;
sha256 = "sha256-4VN/2FoAXTaumPsplV9wgdUSQsFitC1hqWveAW/yt58=";
};
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 ];
};
}