blob: 99fb664572e4c5ecacf7b5e9455090e33300c794 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
{
fetchFromGitHub,
lib,
python3Packages,
}:
python3Packages.buildPythonApplication rec {
pname = "itch-dl";
version = "0.6.1";
pyproject = true;
src = fetchFromGitHub {
owner = "DragoonAethis";
repo = "itch-dl";
tag = version;
hash = "sha256-zwsiG38wOVi3pP0gQWkZqfAmdWKadjB65qiTg68tZWg=";
};
nativeBuildInputs = with python3Packages; [
pythonRelaxDepsHook
];
build-system = with python3Packages; [
hatchling
];
dependencies = with python3Packages; [
beautifulsoup4
lxml
requests
tqdm
urllib3
];
pythonRelaxDeps = [
"urllib3"
"beautifulsoup4"
];
meta = {
description = "Itch.io game downloader with website, game jam, collection and library support";
mainProgram = "itch-dl";
homepage = "https://github.com/DragoonAethis/itch-dl";
changelog = "https://github.com/DragoonAethis/itch-dl/releases/tag/${src.tag}";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ jopejoe1 ];
};
}
|