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

24 lines
739 B
Nix
Raw Normal View History

2017-04-13 22:14:19 +02:00
{ stdenv, fetchurl, python27Packages }:
python27Packages.buildPythonApplication rec {
version = "3.0.0";
2017-04-13 22:14:19 +02:00
name = "fanficfare-${version}";
nameprefix = "";
src = fetchurl {
url = "https://github.com/JimmXinu/FanFicFare/archive/v${version}.tar.gz";
sha256 = "0m8p1nn4621fspcas4g4k8y6fnnlzn7kxjxw2fapdrk3cz1pgi69";
2017-04-13 22:14:19 +02:00
};
propagatedBuildInputs = with python27Packages; [ beautifulsoup4 chardet html5lib html2text ];
meta = with stdenv.lib; {
description = "FanFicFare is a tool for making eBooks from fanfiction web sites";
homepage = https://github.com/JimmXinu/FanFicFare;
2017-04-13 22:14:19 +02:00
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ lucas8 ];
inherit version;
};
}