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>2024-01-06 19:36:24 +0100
committerMikael Fangel <34864484+MikaelFangel@users.noreply.github.com>2024-02-07 21:15:52 +0100
commita77a12229b31f3826c02fd7111cbb4da4a086809 (patch)
tree8a38395c8193a3ccfe3ffcde13b576e2cf4b14ad /pkgs/servers/web-apps
parent6369ad448c78d136183f8c6a5d04572f84aa1b95 (diff)
downloadnixlib-a77a12229b31f3826c02fd7111cbb4da4a086809.tar
nixlib-a77a12229b31f3826c02fd7111cbb4da4a086809.tar.gz
nixlib-a77a12229b31f3826c02fd7111cbb4da4a086809.tar.bz2
nixlib-a77a12229b31f3826c02fd7111cbb4da4a086809.tar.lz
nixlib-a77a12229b31f3826c02fd7111cbb4da4a086809.tar.xz
nixlib-a77a12229b31f3826c02fd7111cbb4da4a086809.tar.zst
nixlib-a77a12229b31f3826c02fd7111cbb4da4a086809.zip
changedetection-io: 0.45.9 -> 0.45.13
Diffstat (limited to 'pkgs/servers/web-apps')
-rw-r--r--pkgs/servers/web-apps/changedetection-io/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/servers/web-apps/changedetection-io/default.nix b/pkgs/servers/web-apps/changedetection-io/default.nix
index a162448e637e..b9156d2e5b7d 100644
--- a/pkgs/servers/web-apps/changedetection-io/default.nix
+++ b/pkgs/servers/web-apps/changedetection-io/default.nix
@@ -5,19 +5,19 @@
 
 python3.pkgs.buildPythonApplication rec {
   pname = "changedetection-io";
-  version = "0.45.9";
+  version = "0.45.14";
   format = "setuptools";
 
   src = fetchFromGitHub {
     owner = "dgtlmoon";
     repo = "changedetection.io";
     rev = version;
-    hash = "sha256-xiKXp9DBaiSteqZwQLZ4zLwT5MeETJx01rKRrWGYioc=";
+    hash = "sha256-O+kWivVc/FZmIDjOE/fsUccrOyHrQ8GakjulEnm4w88=";
   };
 
   postPatch = ''
     substituteInPlace requirements.txt \
-      --replace "apprise~=1.6.0" "apprise" \
+      --replace "apprise~=1.7.1" "apprise" \
       --replace "cryptography~=3.4" "cryptography" \
       --replace "dnspython~=2.4" "dnspython" \
       --replace "pytest ~=7.2" "" \
@@ -47,6 +47,7 @@ python3.pkgs.buildPythonApplication rec {
     jinja2-time
     jsonpath-ng
     jq
+    loguru
     lxml
     paho-mqtt
     pillow
@@ -76,5 +77,6 @@ python3.pkgs.buildPythonApplication rec {
     changelog = "https://github.com/dgtlmoon/changedetection.io/releases/tag/${version}";
     license = licenses.asl20;
     maintainers = with maintainers; [ mikaelfangel ];
+    mainProgram = "changedetection.io";
   };
 }