mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
24 lines
740 B
Nix
24 lines
740 B
Nix
{ stdenv, fetchurl, python27Packages }:
|
|
|
|
python27Packages.buildPythonApplication rec {
|
|
version = "2.22.0";
|
|
name = "fanficfare-${version}";
|
|
nameprefix = "";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/JimmXinu/FanFicFare/archive/v${version}.tar.gz";
|
|
sha256 = "1gwr2qk0wff8f69w21ffj6cq8jklqd89vcdhhln6ii1h1kf8k031";
|
|
};
|
|
|
|
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;
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ lucas8 ];
|
|
inherit version;
|
|
};
|
|
}
|