2021-01-25 08:26:54 +00:00
|
|
|
{ lib, python3Packages }:
|
2017-04-13 21:14:19 +01:00
|
|
|
|
2018-12-16 07:35:38 +00:00
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "FanFicFare";
|
2020-07-17 03:37:06 +01:00
|
|
|
version = "3.21.0";
|
2017-04-13 21:14:19 +01:00
|
|
|
|
2018-12-16 07:35:38 +00:00
|
|
|
src = python3Packages.fetchPypi {
|
|
|
|
inherit pname version;
|
2020-07-17 03:37:06 +01:00
|
|
|
sha256 = "16hklfbww6ibmjr32gg98nlnzl4dwanz6lm3fzg2x3vd7d54m92c";
|
2017-04-13 21:14:19 +01:00
|
|
|
};
|
|
|
|
|
2018-12-16 07:35:38 +00:00
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
|
|
beautifulsoup4
|
|
|
|
chardet
|
|
|
|
html5lib
|
|
|
|
html2text
|
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = false; # no tests exist
|
2017-04-13 21:14:19 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-12-16 07:35:38 +00:00
|
|
|
description = "Tool for making eBooks from fanfiction web sites";
|
2020-03-04 22:17:43 +00:00
|
|
|
homepage = "https://github.com/JimmXinu/FanFicFare";
|
2017-04-13 21:14:19 +01:00
|
|
|
license = licenses.gpl3;
|
2021-03-04 07:29:36 +00:00
|
|
|
platforms = platforms.unix;
|
2020-01-21 06:39:52 +00:00
|
|
|
maintainers = with maintainers; [ dwarfmaster ];
|
2017-04-13 21:14:19 +01:00
|
|
|
};
|
|
|
|
}
|