humblebundle-downloader: init at 0.4.3 (#382653)

This commit is contained in:
Aleksana 2025-02-18 10:47:08 +08:00 committed by GitHub
commit 5a1c9c4812
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,36 @@
{
fetchFromGitHub,
lib,
python3Packages,
}:
python3Packages.buildPythonApplication rec {
pname = "humblebundle-downloader";
version = "0.4.3";
pyproject = true;
src = fetchFromGitHub {
owner = "xtream1101";
repo = "humblebundle-downloader";
tag = version;
hash = "sha256-fLfAGDKn6AWHJKsgQ0fBYdN6mGfZNrVs9n6Zo9VRgIY=";
};
build-system = with python3Packages; [
poetry-core
];
dependencies = with python3Packages; [
parsel
requests
];
meta = {
description = "Download your Humble Bundle Library";
mainProgram = "hbd";
homepage = "https://github.com/xtream1101/humblebundle-downloader";
changelog = "https://github.com/xtream1101/humblebundle-downloader/blob/${src.tag}/CHANGELOG.md";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ jopejoe1 ];
};
}