nixpkgs/pkgs/tools/text/fanficfare/default.nix
volth f3282c8d1e treewide: remove unused variables (#63177)
* treewide: remove unused variables

* making ofborg happy
2019-06-16 19:59:05 +00:00

30 lines
701 B
Nix

{ stdenv, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "FanFicFare";
version = "3.8.0";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "1lwzg1mghjfggjyf35vqakfwkd4xcvcx2xfqnz0m3imlxk729kdl";
};
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;
};
}