summary refs log tree commit diff
path: root/pkgs/applications/misc/archivy
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-02-08 17:57:35 +0100
committerGitHub <noreply@github.com>2021-02-08 17:57:35 +0100
commit88d5adc20bed2b6e8a3deada91ab7095a5bf4695 (patch)
tree4398175ecc00d7c689ef43df3136586fd9baedf5 /pkgs/applications/misc/archivy
parente339437038816cc7bdca7411c90c3bc8322e2c33 (diff)
parent63e7deea52cce41d866a90023c34c2a54dba6521 (diff)
downloadnixpkgs-88d5adc20bed2b6e8a3deada91ab7095a5bf4695.tar
nixpkgs-88d5adc20bed2b6e8a3deada91ab7095a5bf4695.tar.gz
nixpkgs-88d5adc20bed2b6e8a3deada91ab7095a5bf4695.tar.bz2
nixpkgs-88d5adc20bed2b6e8a3deada91ab7095a5bf4695.tar.lz
nixpkgs-88d5adc20bed2b6e8a3deada91ab7095a5bf4695.tar.xz
nixpkgs-88d5adc20bed2b6e8a3deada91ab7095a5bf4695.tar.zst
nixpkgs-88d5adc20bed2b6e8a3deada91ab7095a5bf4695.zip
Merge pull request #107106 from siraben/archivy-0.10.0
archivy: 0.9.3 -> 1.0.0
Diffstat (limited to 'pkgs/applications/misc/archivy')
-rw-r--r--pkgs/applications/misc/archivy/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/applications/misc/archivy/default.nix b/pkgs/applications/misc/archivy/default.nix
index 56260fa4f70..c670a4b367d 100644
--- a/pkgs/applications/misc/archivy/default.nix
+++ b/pkgs/applications/misc/archivy/default.nix
@@ -1,15 +1,15 @@
 { lib, python3, fetchPypi, appdirs, attrs, requests,
 beautifulsoup4, click-plugins, elasticsearch, flask_login, flask_wtf,
 pypandoc, python-dotenv, python-frontmatter, tinydb, validators,
-watchdog, wtforms }:
+watchdog, wtforms, html2text, flask-compress }:
 
 python3.pkgs.buildPythonApplication rec {
   pname = "archivy";
-  version = "0.9.3";
+  version = "1.0.0";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "b6ff08a9ecd0a929663c36c73844ac5cb4dc847e69aae639a450c64d4320a506";
+    sha256 = "FDyUfahjv4zqOVFr0nRhcgxr7mskFP1W/PlhZWx/6E8=";
   };
 
   # Relax some dependencies
@@ -22,7 +22,6 @@ python3.pkgs.buildPythonApplication rec {
       --replace 'python_frontmatter == 0.5.0' 'python_frontmatter' \
       --replace 'requests ==' 'requests >=' \
       --replace 'validators ==' 'validators >=' \
-      --replace 'watchdog ==' 'watchdog >='
   '';
 
   propagatedBuildInputs = [
@@ -41,6 +40,8 @@ python3.pkgs.buildPythonApplication rec {
     validators
     watchdog
     wtforms
+    html2text
+    flask-compress
   ];
 
   # __init__.py attempts to mkdir in read-only file system