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

30 lines
709 B
Nix
Raw Normal View History

{ stdenv, python3Packages }:
2017-04-13 20:14:19 +00:00
python3Packages.buildPythonApplication rec {
pname = "FanFicFare";
2020-05-07 13:53:16 +00:00
version = "3.19.0";
2017-04-13 20:14:19 +00:00
src = python3Packages.fetchPypi {
inherit pname version;
2020-05-07 13:53:16 +00:00
sha256 = "01cr4941sg6is6k6sajlbr6hs5s47aq9xhp7gadhq4h3x6dilj40";
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";
2020-03-04 22:17:43 +00:00
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;
};
}