nixpkgs/pkgs/tools/text/fanficfare/default.nix
R. RyanTM a11755dab7 fanficfare: 3.8.0 -> 3.9.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/fanficfare/versions
2019-07-15 05:39:02 -07:00

30 lines
701 B
Nix

{ stdenv, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "FanFicFare";
version = "3.9.0";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "0326fh72nihq4svgw7zvacij193ya66p102y1c7glpjq75kcx6a1";
};
propagatedBuildInputs = with python3Packages; [
beautifulsoup4
chardet
html5lib
html2text
];
doCheck = false; # no tests exist
meta = with stdenv.lib; {
description = "Tool for making eBooks from fanfiction web sites";
homepage = https://github.com/JimmXinu/FanFicFare;
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ lucas8 ];
inherit version;
};
}