2019-06-16 21:59:06 +02:00
|
|
|
{ stdenv, python3Packages }:
|
2017-04-13 22:14:19 +02:00
|
|
|
|
2018-12-16 08:35:38 +01:00
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "FanFicFare";
|
2019-08-04 09:10:01 +02:00
|
|
|
version = "3.10.5";
|
2017-04-13 22:14:19 +02:00
|
|
|
|
2018-12-16 08:35:38 +01:00
|
|
|
src = python3Packages.fetchPypi {
|
|
|
|
inherit pname version;
|
2019-08-04 09:10:01 +02:00
|
|
|
sha256 = "0bxz1a0ak6b6zj5xpkzwy8ikxf45kkxdj64sf4ilj43yaqicm0bw";
|
2017-04-13 22:14:19 +02:00
|
|
|
};
|
|
|
|
|
2018-12-16 08:35:38 +01:00
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
|
|
beautifulsoup4
|
|
|
|
chardet
|
|
|
|
html5lib
|
|
|
|
html2text
|
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = false; # no tests exist
|
2017-04-13 22:14:19 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2018-12-16 08:35:38 +01:00
|
|
|
description = "Tool for making eBooks from fanfiction web sites";
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = https://github.com/JimmXinu/FanFicFare;
|
2017-04-13 22:14:19 +02:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ lucas8 ];
|
|
|
|
inherit version;
|
|
|
|
};
|
|
|
|
}
|