Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

84 lines
1.7 KiB
Nix
Raw Normal View History

{
lib,
fetchFromGitHub,
python3,
}:
python3.pkgs.buildPythonApplication rec {
pname = "changedetection-io";
version = "0.49.4";
format = "setuptools";
src = fetchFromGitHub {
owner = "dgtlmoon";
repo = "changedetection.io";
2024-12-07 13:58:51 +00:00
tag = version;
hash = "sha256-EmtJ8XXPb75W4VPj4Si9fdzVLDKVfm+8P6UZZlMpMdI=";
};
pythonRelaxDeps = true;
propagatedBuildInputs =
with python3.pkgs;
[
apprise
beautifulsoup4
brotli
2024-09-08 15:02:46 +02:00
babel
chardet
cryptography
dnspython
elementpath
eventlet
extruct
feedgen
flask
flask-compress
2024-03-14 08:26:34 +01:00
flask-cors
flask-expects-json
flask-login
2023-10-13 17:37:27 +02:00
flask-paginate
flask-restful
flask-wtf
2024-06-30 22:43:11 +02:00
greenlet
inscriptis
jinja2
jinja2-time
jsonpath-ng
jq
2024-01-06 19:36:24 +01:00
loguru
lxml
paho-mqtt
playwright
2024-03-14 08:26:34 +01:00
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";
2025-02-15 23:11:02 +00:00
changelog = "https://github.com/dgtlmoon/changedetection.io/releases/tag/${src.tag}";
license = licenses.asl20;
maintainers = with maintainers; [ mikaelfangel ];
2024-01-06 19:36:24 +01:00
mainProgram = "changedetection.io";
};
}