File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed
pkgs/by-name/hu/humblebundle-downloader Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments