Merge pull request #24883 from lucas8/fanficfare
fanficfare: init at 2.9.0
This commit is contained in:
commit
8d07a8b381
23
pkgs/tools/text/fanficfare/default.nix
Normal file
23
pkgs/tools/text/fanficfare/default.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{ stdenv, fetchurl, python27Packages }:
|
||||||
|
|
||||||
|
python27Packages.buildPythonApplication rec {
|
||||||
|
version = "2.9.0";
|
||||||
|
name = "fanficfare-${version}";
|
||||||
|
nameprefix = "";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/JimmXinu/FanFicFare/archive/v${version}.tar.gz";
|
||||||
|
sha256 = "781e9095d8152345a6106135e87c46eb306ff234b847de5073faca2f78544398";
|
||||||
|
};
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
@ -1717,6 +1717,8 @@ with pkgs;
|
|||||||
pillow;
|
pillow;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fanficfare = callPackage ../tools/text/fanficfare { };
|
||||||
|
|
||||||
fastd = callPackage ../tools/networking/fastd { };
|
fastd = callPackage ../tools/networking/fastd { };
|
||||||
|
|
||||||
fatsort = callPackage ../tools/filesystems/fatsort { };
|
fatsort = callPackage ../tools/filesystems/fatsort { };
|
||||||
|
Loading…
Reference in New Issue
Block a user