Merge pull request #260908 from MikaelFangel/update-changedetection-io

changedetection-io: 0.40.3 -> 0.45.3

authored by Fabian Affolter and committed by GitHub 4bb928c8 beeb9fce

+9 -7
+9 -7
pkgs/servers/web-apps/changedetection-io/default.nix
··· 1 1 { lib 2 2 , fetchFromGitHub 3 - , fetchurl 4 3 , python3 5 4 }: 5 + 6 6 python3.pkgs.buildPythonApplication rec { 7 7 pname = "changedetection-io"; 8 - version = "0.40.3"; 8 + version = "0.45.3"; 9 9 format = "setuptools"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "dgtlmoon"; 13 13 repo = "changedetection.io"; 14 - rev = version; 15 - sha256 = "sha256-RYxhkCSL17rU3C4rOArYptmYpdK/CDPw9xfXkKja2xs="; 14 + rev = "refs/tags/${version}"; 15 + hash = "sha256-QTkkMFGyEGSakvFCiJ36Xr3IiG9K7GDy2dpNGWjUngs="; 16 16 }; 17 17 18 18 postPatch = '' 19 19 substituteInPlace requirements.txt \ 20 - --replace "apprise~=1.3.0" "apprise" \ 20 + --replace "apprise~=1.5.0" "apprise" \ 21 21 --replace "cryptography~=3.4" "cryptography" \ 22 22 --replace "dnspython<2.3.0" "dnspython" \ 23 - --replace "pytest ~=6.2" "" \ 23 + --replace "pytest ~=7.2" "" \ 24 24 --replace "pytest-flask ~=1.2" "" \ 25 25 --replace "selenium~=4.1.0" "selenium" \ 26 26 --replace "werkzeug~=2.0.0" "werkzeug" ··· 39 39 flask-compress 40 40 flask-expects-json 41 41 flask-login 42 + flask-paginate 42 43 flask-restful 43 44 flask-wtf 44 45 inscriptis ··· 70 71 ]; 71 72 72 73 meta = with lib; { 74 + description = "Self-hosted free open source website change detection tracking, monitoring and notification service"; 73 75 homepage = "https://github.com/dgtlmoon/changedetection.io"; 74 - description = "Simplest self-hosted free open source website change detection tracking, monitoring and notification service"; 76 + changelog = "https://github.com/dgtlmoon/changedetection.io/releases/tag/${version}"; 75 77 license = licenses.asl20; 76 78 maintainers = with maintainers; [ ]; 77 79 };