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

30 lines
701 B
Nix
Raw Normal View History

{ stdenv, python3Packages }:
2017-04-13 20:14:19 +00:00
python3Packages.buildPythonApplication rec {
pname = "FanFicFare";
version = "3.9.0";
2017-04-13 20:14:19 +00:00
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "0326fh72nihq4svgw7zvacij193ya66p102y1c7glpjq75kcx6a1";
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;
};
}