6 python3.pkgs.buildPythonApplication rec {
7 pname = "changedetection-io";
11 src = fetchFromGitHub {
13 repo = "changedetection.io";
14 rev = "refs/tags/${version}";
15 hash = "sha256-VltrcTbX95agV9JGV2KYGeZ6iUlgzrOsjShsUpiGfes=";
19 substituteInPlace requirements.txt \
20 --replace "apprise~=1.8.0" "apprise" \
21 --replace "cryptography~=3.4" "cryptography" \
22 --replace "dnspython==2.6.1" "dnspython" \
23 --replace "pytest ~=7.2" "" \
24 --replace "pytest-flask ~=1.2" "" \
25 --replace "selenium~=4.14.0" "selenium" \
26 --replace "werkzeug~=3.0" "werkzeug"
29 propagatedBuildInputs = with python3.pkgs; [
67 ] ++ requests.optional-dependencies.socks;
69 # tests can currently not be run in one pytest invocation and without docker
72 nativeCheckInputs = with python3.pkgs; [
78 description = "Self-hosted free open source website change detection tracking, monitoring and notification service";
79 homepage = "https://github.com/dgtlmoon/changedetection.io";
80 changelog = "https://github.com/dgtlmoon/changedetection.io/releases/tag/${version}";
81 license = licenses.asl20;
82 maintainers = with maintainers; [ mikaelfangel ];
83 mainProgram = "changedetection.io";