nixpkgs/pkgs/games/legendary-gl/default.nix
2021-11-29 16:00:05 +01:00

34 lines
723 B
Nix

{ lib
, fetchFromGitHub
, buildPythonApplication
, pythonOlder
, requests
}:
buildPythonApplication rec {
pname = "legendary-gl"; # Name in pypi
version = "0.20.18";
src = fetchFromGitHub {
owner = "derrod";
repo = "legendary";
rev = version;
sha256 = "0d31c8grvcw7y3sh2x90cxhj612k6f491w2r12j1q33d2v9sqm4j";
};
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 ];
};
}