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

30 lines
707 B
Nix
Raw Normal View History

{ stdenv, python3Packages }:
2017-04-13 20:14:19 +00:00
python3Packages.buildPythonApplication rec {
pname = "FanFicFare";
2020-01-20 07:38:24 +00:00
version = "3.15.0";
2017-04-13 20:14:19 +00:00
src = python3Packages.fetchPypi {
inherit pname version;
2020-01-20 07:38:24 +00:00
sha256 = "12nsrl8nvg52mi136m7ayvaivwjapn7ry95137ynj1njy2w990hm";
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; [ dwarfmaster ];
2017-04-13 20:14:19 +00:00
inherit version;
};
}