b682b0fc16
I created this derivation due to because it was requested in #88963. I do not use legendary-gl myself. Now that we have another maintainer, there is no good reason for me to stay maintainer of this.
35 lines
722 B
Nix
35 lines
722 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, buildPythonApplication
|
|
, pythonOlder
|
|
, requests
|
|
}:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "legendary-gl"; # Name in pypi
|
|
version = "0.20.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "derrod";
|
|
repo = "legendary";
|
|
rev = version;
|
|
sha256 = "1v6jbnasz2ilcafs6qyl6na4a8cxy2lgwr0hqsja6d846rfqa8ad";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|