about summary refs log tree commit diff
path: root/pkgs/servers/web-apps
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-11-24 18:20:38 -0500
committerGitHub <noreply@github.com>2023-11-24 18:20:38 -0500
commitf5aa27b02d463018e2136b25291059036a3aa6c0 (patch)
tree4aed43a617ae1817868164fc0940bb8de04de4f8 /pkgs/servers/web-apps
parenteb3c036413501dc56b0d255f742e3e488509753c (diff)
parent05dabf68247a7a8d56b3a053be27e2b6722413ef (diff)
downloadnixlib-f5aa27b02d463018e2136b25291059036a3aa6c0.tar
nixlib-f5aa27b02d463018e2136b25291059036a3aa6c0.tar.gz
nixlib-f5aa27b02d463018e2136b25291059036a3aa6c0.tar.bz2
nixlib-f5aa27b02d463018e2136b25291059036a3aa6c0.tar.lz
nixlib-f5aa27b02d463018e2136b25291059036a3aa6c0.tar.xz
nixlib-f5aa27b02d463018e2136b25291059036a3aa6c0.tar.zst
nixlib-f5aa27b02d463018e2136b25291059036a3aa6c0.zip
Merge pull request #264062 from MikaelFangel/update-changedetection-io
changedetection-io: 0.45.3 -> 0.45.7.3
Diffstat (limited to 'pkgs/servers/web-apps')
-rw-r--r--pkgs/servers/web-apps/changedetection-io/default.nix16
1 files changed, 8 insertions, 8 deletions
diff --git a/pkgs/servers/web-apps/changedetection-io/default.nix b/pkgs/servers/web-apps/changedetection-io/default.nix
index 29d8eb1fdfc5..142e83edbfe0 100644
--- a/pkgs/servers/web-apps/changedetection-io/default.nix
+++ b/pkgs/servers/web-apps/changedetection-io/default.nix
@@ -5,25 +5,25 @@
 
 python3.pkgs.buildPythonApplication rec {
   pname = "changedetection-io";
-  version = "0.45.3";
+  version = "0.45.7.3";
   format = "setuptools";
 
   src = fetchFromGitHub {
     owner = "dgtlmoon";
     repo = "changedetection.io";
-    rev = "refs/tags/${version}";
-    hash = "sha256-QTkkMFGyEGSakvFCiJ36Xr3IiG9K7GDy2dpNGWjUngs=";
+    rev = version;
+    hash = "sha256-axj23LEZgSNpwkVtXQ/2QZVbbV+xTpkf57ajYnqTGFA=";
   };
 
   postPatch = ''
     substituteInPlace requirements.txt \
-      --replace "apprise~=1.5.0" "apprise" \
+      --replace "apprise~=1.6.0" "apprise" \
       --replace "cryptography~=3.4" "cryptography" \
-      --replace "dnspython<2.3.0" "dnspython" \
+      --replace "dnspython~=2.4" "dnspython" \
       --replace "pytest ~=7.2" "" \
       --replace "pytest-flask ~=1.2" "" \
-      --replace "selenium~=4.1.0" "selenium" \
-      --replace "werkzeug~=2.0.0" "werkzeug"
+      --replace "selenium~=4.14.0" "selenium" \
+      --replace "werkzeug~=3.0" "werkzeug"
   '';
 
   propagatedBuildInputs = with python3.pkgs; [
@@ -75,6 +75,6 @@ python3.pkgs.buildPythonApplication rec {
     homepage = "https://github.com/dgtlmoon/changedetection.io";
     changelog = "https://github.com/dgtlmoon/changedetection.io/releases/tag/${version}";
     license = licenses.asl20;
-    maintainers = with maintainers; [ ];
+    maintainers = with maintainers; [ mikaelfangel ];
   };
 }