{ fetchFromGitHub, lib, python3Packages, }: python3Packages.buildPythonApplication rec { pname = "itch-dl"; version = "0.6.1"; pyproject = true; src = fetchFromGitHub { owner = "DragoonAethis"; repo = "itch-dl"; tag = version; hash = "sha256-zwsiG38wOVi3pP0gQWkZqfAmdWKadjB65qiTg68tZWg="; }; nativeBuildInputs = with python3Packages; [ pythonRelaxDepsHook ]; build-system = with python3Packages; [ hatchling ]; dependencies = with python3Packages; [ beautifulsoup4 lxml requests tqdm urllib3 ]; pythonRelaxDeps = [ "urllib3" "beautifulsoup4" "lxml" ]; meta = { description = "Itch.io game downloader with website, game jam, collection and library support"; mainProgram = "itch-dl"; homepage = "https://github.com/DragoonAethis/itch-dl"; changelog = "https://github.com/DragoonAethis/itch-dl/releases/tag/${src.tag}"; license = with lib.licenses; [ mit ]; maintainers = with lib.maintainers; [ jopejoe1 ]; }; }