itchiodl: init at 2.1.2

This commit is contained in:
Francesco Gazzetta 2023-01-25 16:40:44 +01:00
parent 7f6757e4f2
commit 99deccdcec
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

@ -3248,6 +3248,8 @@ with pkgs;
itch = callPackage ../games/itch {};
itchiodl = callPackage ../games/itchiodl { };
itd = callPackage ../applications/misc/itd { };
lastpass-cli = callPackage ../tools/security/lastpass-cli { };