nixpkgs/pkgs/tools/text/fanficfare/default.nix

30 lines
702 B
Nix
Raw Normal View History

{ stdenv, python3Packages }:
2017-04-13 20:14:19 +00:00
python3Packages.buildPythonApplication rec {
pname = "FanFicFare";
version = "3.12.0";
2017-04-13 20:14:19 +00:00
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "1hzb668fga9y422670iw22ggfn8a9jp2jdxs2xhzbqxnfrw08wq0";
2017-04-13 20:14:19 +00:00
};
propagatedBuildInputs = with python3Packages; [
beautifulsoup4
chardet
html5lib
html2text
];
doCheck = false; # no tests exist
2017-04-13 20:14:19 +00:00
meta = with stdenv.lib; {
description = "Tool for making eBooks from fanfiction web sites";
homepage = https://github.com/JimmXinu/FanFicFare;
2017-04-13 20:14:19 +00:00
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ lucas8 ];
inherit version;
};
}