summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorBenjamin Staffin <benley@gmail.com>2017-04-14 19:08:16 -0400
committerGitHub <noreply@github.com>2017-04-14 19:08:16 -0400
commit8d07a8b3812aabc6153beb835ca762c6a0e22fff (patch)
treeae5b06ce0aa15ea79951220e4afb8552f59f644a /pkgs/tools
parentf399ea9bf3f5aa76c9470ddba5ea6fbe4091023c (diff)
parent9d794180196c42929cc95c262492ad8a52f1fe1b (diff)
downloadnixpkgs-8d07a8b3812aabc6153beb835ca762c6a0e22fff.tar
nixpkgs-8d07a8b3812aabc6153beb835ca762c6a0e22fff.tar.gz
nixpkgs-8d07a8b3812aabc6153beb835ca762c6a0e22fff.tar.bz2
nixpkgs-8d07a8b3812aabc6153beb835ca762c6a0e22fff.tar.lz
nixpkgs-8d07a8b3812aabc6153beb835ca762c6a0e22fff.tar.xz
nixpkgs-8d07a8b3812aabc6153beb835ca762c6a0e22fff.tar.zst
nixpkgs-8d07a8b3812aabc6153beb835ca762c6a0e22fff.zip
Merge pull request #24883 from lucas8/fanficfare
fanficfare: init at 2.9.0
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/text/fanficfare/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/tools/text/fanficfare/default.nix b/pkgs/tools/text/fanficfare/default.nix
new file mode 100644
index 00000000000..38eadf40ae3
--- /dev/null
+++ b/pkgs/tools/text/fanficfare/default.nix
@@ -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;
+  };
+}