2020-05-29 04:19:58 +01:00
|
|
|
{ lib
|
2022-12-28 20:22:02 +00:00
|
|
|
, gitUpdater
|
2020-05-29 04:19:58 +01:00
|
|
|
, fetchFromGitHub
|
|
|
|
, buildPythonApplication
|
|
|
|
, pythonOlder
|
|
|
|
, requests
|
2023-07-31 03:45:35 +01:00
|
|
|
, filelock
|
2020-05-29 04:19:58 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "legendary-gl"; # Name in pypi
|
2023-12-26 18:16:37 +00:00
|
|
|
version = "0.20.34";
|
2020-05-29 04:19:58 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "derrod";
|
|
|
|
repo = "legendary";
|
2023-12-26 18:16:37 +00:00
|
|
|
rev = "56d439ed2d3d9f34e2b08fa23e627c23a487b8d6";
|
|
|
|
sha256 = "sha256-yCHeeEGw+9gtRMGyIhbStxJhmSM/1Fqly7HSRDkZILQ=";
|
2020-05-29 04:19:58 +01:00
|
|
|
};
|
|
|
|
|
2023-07-31 03:45:35 +01:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
requests
|
|
|
|
filelock
|
|
|
|
];
|
2020-05-29 04:19:58 +01:00
|
|
|
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
|
2021-01-31 19:00:23 +00:00
|
|
|
# no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "legendary" ];
|
|
|
|
|
2020-05-29 04:19:58 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Free and open-source Epic Games Launcher alternative";
|
|
|
|
homepage = "https://github.com/derrod/legendary";
|
|
|
|
license = licenses.gpl3;
|
2021-01-31 19:08:40 +00:00
|
|
|
maintainers = with maintainers; [ equirosa ];
|
2024-01-18 00:31:05 +00:00
|
|
|
mainProgram = "legendary";
|
2020-05-29 04:19:58 +01:00
|
|
|
};
|
2022-12-28 20:21:51 +00:00
|
|
|
|
2022-12-28 20:22:02 +00:00
|
|
|
passthru.updateScript = gitUpdater { };
|
2020-05-29 04:19:58 +01:00
|
|
|
}
|