mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 09:17:07 +03:00
37 lines
773 B
Nix
37 lines
773 B
Nix
{ lib
|
|
, buildPythonApplication
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
, setuptools
|
|
, requests
|
|
}:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "gogdl";
|
|
version = "0.4";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Heroic-Games-Launcher";
|
|
repo = "heroic-gogdl";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-4hWuGd0Alzd/ZqtN4zG2aid6C9lnT3Ihrrsjfg9PEYA=";
|
|
};
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
propagatedBuildInputs = [
|
|
setuptools
|
|
requests
|
|
];
|
|
|
|
pythonImportsCheck = [ "gogdl" ];
|
|
|
|
meta = with lib; {
|
|
description = "GOG Downloading module for Heroic Games Launcher";
|
|
homepage = "https://github.com/Heroic-Games-Launcher/heroic-gogdl";
|
|
license = with licenses; [ gpl3 ];
|
|
maintainers = with maintainers; [ aidalgol ];
|
|
};
|
|
}
|