Merge pull request #212632 from fgaz/itchiodl/init

itchiodl: init at 2.1.2
This commit is contained in:
Nick Cao 2023-01-31 09:15:36 +08:00 committed by GitHub
commit cdd68cdadc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,35 @@
{ lib
, python3Packages
, fetchFromGitHub
}:
python3Packages.buildPythonApplication rec {
pname = "itchiodl";
version = "2.1.2";
src = fetchFromGitHub {
owner = "Emersont1";
repo = "itchio";
rev = "v${version}";
hash = "sha256-U9oLrocwVdTqTQ26/MMiYO++yFGdOjnn8g+ea1jCl/A=";
};
format = "pyproject";
nativeBuildInputs = with python3Packages; [
poetry-core
];
propagatedBuildInputs = with python3Packages; [
beautifulsoup4
clint
requests
];
meta = with lib; {
homepage = "https://github.com/Emersont1/itchio";
description = "itch.io download tool";
license = licenses.mit;
maintainers = with maintainers; [ fgaz ];
};
}

View File

@ -3291,6 +3291,8 @@ with pkgs;
itch = callPackage ../games/itch {};
itchiodl = callPackage ../games/itchiodl { };
itd = callPackage ../applications/misc/itd { };
kord = callPackage ../applications/misc/kord { };