Skip to content

Commit a5b2caa

Browse files
committed
humblebundle-downloader: init at 0.4.3
1 parent 03b6a55 commit a5b2caa

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
fetchFromGitHub,
3+
lib,
4+
python3Packages,
5+
}:
6+
7+
python3Packages.buildPythonApplication rec {
8+
pname = "humblebundle-downloader";
9+
version = "0.4.3";
10+
pyproject = true;
11+
12+
src = fetchFromGitHub {
13+
owner = "xtream1101";
14+
repo = "humblebundle-downloader";
15+
tag = version;
16+
hash = "sha256-fLfAGDKn6AWHJKsgQ0fBYdN6mGfZNrVs9n6Zo9VRgIY=";
17+
};
18+
19+
build-system = with python3Packages; [
20+
poetry-core
21+
];
22+
23+
dependencies = with python3Packages; [
24+
parsel
25+
requests
26+
];
27+
28+
meta = {
29+
description = "Download your Humble Bundle Library";
30+
mainProgram = "hbd";
31+
homepage = "https://github.com/xtream1101/humblebundle-downloader";
32+
changelog = "https://github.com/xtream1101/humblebundle-downloader/blob/${src.tag}/CHANGELOG.md";
33+
license = with lib.licenses; [ mit ];
34+
maintainers = with lib.maintainers; [ jopejoe1 ];
35+
};
36+
}

0 commit comments

Comments
 (0)