about summary refs log tree commit diff
path: root/pkgs/servers/web-apps
diff options
context:
space:
mode:
authorMikael Fangel <34864484+MikaelFangel@users.noreply.github.com>2023-10-29 02:12:14 +0200
committerMikael Fangel <34864484+MikaelFangel@users.noreply.github.com>2023-11-12 15:45:22 +0100
commita43f8ce903571709b3e9964b3c4c2a2d7b7797e6 (patch)
tree51f044bad6d4424579a09b587de169dd43a838ff /pkgs/servers/web-apps
parente9cdae74d55737943358a1d33c4906d4a6865159 (diff)
downloadnixlib-a43f8ce903571709b3e9964b3c4c2a2d7b7797e6.tar
nixlib-a43f8ce903571709b3e9964b3c4c2a2d7b7797e6.tar.gz
nixlib-a43f8ce903571709b3e9964b3c4c2a2d7b7797e6.tar.bz2
nixlib-a43f8ce903571709b3e9964b3c4c2a2d7b7797e6.tar.lz
nixlib-a43f8ce903571709b3e9964b3c4c2a2d7b7797e6.tar.xz
nixlib-a43f8ce903571709b3e9964b3c4c2a2d7b7797e6.tar.zst
nixlib-a43f8ce903571709b3e9964b3c4c2a2d7b7797e6.zip
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.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/servers/web-apps/changedetection-io/default.nix b/pkgs/servers/web-apps/changedetection-io/default.nix
index 29d8eb1fdfc5..b8945caa01d7 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; [