about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-11-10 06:18:53 -0800
committerTimo Kaufmann <timokau@zoho.com>2018-11-10 15:18:53 +0100
commit27f64b145a2871ab4b221d930fd1150bec4a15aa (patch)
tree99d7ee8038e657a2f50fffbe9a71748dfdb09279 /pkgs/tools
parent1c93a4994a43a2c922ea0ec56b99e83be77f3c6b (diff)
downloadnixlib-27f64b145a2871ab4b221d930fd1150bec4a15aa.tar
nixlib-27f64b145a2871ab4b221d930fd1150bec4a15aa.tar.gz
nixlib-27f64b145a2871ab4b221d930fd1150bec4a15aa.tar.bz2
nixlib-27f64b145a2871ab4b221d930fd1150bec4a15aa.tar.lz
nixlib-27f64b145a2871ab4b221d930fd1150bec4a15aa.tar.xz
nixlib-27f64b145a2871ab4b221d930fd1150bec4a15aa.tar.zst
nixlib-27f64b145a2871ab4b221d930fd1150bec4a15aa.zip
fanficfare: 3.0.0 -> 3.1.1 (#50128)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/fanficfare/versions
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/text/fanficfare/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/text/fanficfare/default.nix b/pkgs/tools/text/fanficfare/default.nix
index 1dec03e985b3..3315d435afbb 100644
--- a/pkgs/tools/text/fanficfare/default.nix
+++ b/pkgs/tools/text/fanficfare/default.nix
@@ -1,13 +1,13 @@
 { stdenv, fetchurl, python27Packages }:
 
 python27Packages.buildPythonApplication rec {
-  version = "3.0.0";
+  version = "3.1.1";
   name = "fanficfare-${version}";
   nameprefix = "";
 
   src = fetchurl {
     url = "https://github.com/JimmXinu/FanFicFare/archive/v${version}.tar.gz";
-    sha256 = "0m8p1nn4621fspcas4g4k8y6fnnlzn7kxjxw2fapdrk3cz1pgi69";
+    sha256 = "1wklii24vbvq2vi5pqgp3z4lazcplh2i7r2w4d8lkm6pzbw0s8px";
   };
 
   propagatedBuildInputs = with python27Packages; [ beautifulsoup4 chardet html5lib html2text ];