blob: 9aee49e391d9f68e53a3c158b0f2fd7890eee329 (
plain) (
blame)
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
|
{ lib, python3Packages, fetchPypi }:
python3Packages.buildPythonApplication rec {
pname = "fanficfare";
version = "4.35.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-hPBURlsrr/7c26YFZo5UT7PTs8s+D8BXxjU/uposHjQ=";
};
nativeBuildInputs = with python3Packages; [
setuptools
];
propagatedBuildInputs = with python3Packages; [
beautifulsoup4
brotli
chardet
cloudscraper
html5lib
html2text
requests
requests-file
urllib3
];
doCheck = false; # no tests exist
meta = with lib; {
description = "Tool for making eBooks from fanfiction web sites";
mainProgram = "fanficfare";
homepage = "https://github.com/JimmXinu/FanFicFare";
license = licenses.gpl3;
platforms = platforms.unix;
maintainers = with maintainers; [ dwarfmaster ];
};
}
|