Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

84 lines
1.7 KiB
Nix

{
lib,
fetchFromGitHub,
python3,
}:
python3.pkgs.buildPythonApplication rec {
pname = "changedetection-io";
version = "0.49.4";
format = "setuptools";
src = fetchFromGitHub {
owner = "dgtlmoon";
repo = "changedetection.io";
tag = version;
hash = "sha256-EmtJ8XXPb75W4VPj4Si9fdzVLDKVfm+8P6UZZlMpMdI=";
};
pythonRelaxDeps = true;
propagatedBuildInputs =
with python3.pkgs;
[
apprise
beautifulsoup4
brotli
babel
chardet
cryptography
dnspython
elementpath
eventlet
extruct
feedgen
flask
flask-compress
flask-cors
flask-expects-json
flask-login
flask-paginate
flask-restful
flask-wtf
greenlet
inscriptis
jinja2
jinja2-time
jsonpath-ng
jq
loguru
lxml
paho-mqtt
playwright
pyee
pyppeteer
pytz
requests
selenium
setuptools
timeago
urllib3
validators
werkzeug
wtforms
]
++ requests.optional-dependencies.socks;
# tests can currently not be run in one pytest invocation and without docker
doCheck = false;
nativeCheckInputs = with python3.pkgs; [
pytest-flask
pytestCheckHook
];
meta = with lib; {
description = "Self-hosted free open source website change detection tracking, monitoring and notification service";
homepage = "https://github.com/dgtlmoon/changedetection.io";
changelog = "https://github.com/dgtlmoon/changedetection.io/releases/tag/${src.tag}";
license = licenses.asl20;
maintainers = with maintainers; [ mikaelfangel ];
mainProgram = "changedetection.io";
};
}