2021-05-28 09:39:13 +00:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, python3Packages
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
2021-01-15 22:18:51 +00:00
|
|
|
pname = "urlwatch";
|
2023-05-24 13:37:59 +00:00
|
|
|
version = "2.28";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2021-05-28 09:39:13 +00:00
|
|
|
owner = "thp";
|
|
|
|
repo = "urlwatch";
|
|
|
|
rev = version;
|
2023-05-24 13:37:59 +00:00
|
|
|
hash = "sha256-dGohG2+HrsuKegPAn1fmpLYPpovEEUsx+C/0sp2/cX0=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
|
|
appdirs
|
|
|
|
cssselect
|
2022-01-27 00:19:43 +00:00
|
|
|
jq
|
2020-04-24 23:36:52 +00:00
|
|
|
keyring
|
|
|
|
lxml
|
2021-05-28 09:39:13 +00:00
|
|
|
markdown2
|
|
|
|
matrix-client
|
2020-04-24 23:36:52 +00:00
|
|
|
minidb
|
2022-10-21 18:38:19 +00:00
|
|
|
pushbullet-py
|
2020-04-24 23:36:52 +00:00
|
|
|
pycodestyle
|
2021-05-28 09:39:13 +00:00
|
|
|
pyppeteer
|
2020-04-24 23:36:52 +00:00
|
|
|
pyyaml
|
|
|
|
requests
|
|
|
|
];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
# no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A tool for monitoring webpages for updates";
|
|
|
|
homepage = "https://thp.io/2008/urlwatch/";
|
|
|
|
license = licenses.bsd3;
|
2020-11-19 00:13:47 +00:00
|
|
|
maintainers = with maintainers; [ kmein tv ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|