2021-02-05 17:12:51 +00:00
|
|
|
{ lib, python3Packages }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "FanFicFare";
|
2021-12-30 13:39:12 +00:00
|
|
|
version = "4.8.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = python3Packages.fetchPypi {
|
|
|
|
inherit pname version;
|
2021-12-30 13:39:12 +00:00
|
|
|
sha256 = "0h20cw9z6k3z42fhl48pfxcqrk3i45zp4f4xm6pz7jqjzi17h9fk";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
|
|
beautifulsoup4
|
|
|
|
chardet
|
2021-12-30 13:39:12 +00:00
|
|
|
cloudscraper
|
2020-04-24 23:36:52 +00:00
|
|
|
html5lib
|
|
|
|
html2text
|
2021-12-30 13:39:12 +00:00
|
|
|
requests-file
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = false; # no tests exist
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Tool for making eBooks from fanfiction web sites";
|
|
|
|
homepage = "https://github.com/JimmXinu/FanFicFare";
|
|
|
|
license = licenses.gpl3;
|
2021-03-09 03:18:52 +00:00
|
|
|
platforms = platforms.unix;
|
2020-04-24 23:36:52 +00:00
|
|
|
maintainers = with maintainers; [ dwarfmaster ];
|
|
|
|
};
|
|
|
|
}
|