2021-01-25 08:26:54 +00:00
|
|
|
{ lib, fetchFromGitHub, python3Packages }:
|
2014-07-29 21:13:47 +01:00
|
|
|
|
2016-02-19 12:12:11 +00:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2021-01-06 12:54:45 +00:00
|
|
|
pname = "urlwatch";
|
2020-11-17 19:58:17 +00:00
|
|
|
version = "2.21";
|
2014-07-29 21:13:47 +01:00
|
|
|
|
2016-12-02 04:14:22 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "thp";
|
|
|
|
repo = "urlwatch";
|
|
|
|
rev = version;
|
2020-11-17 19:58:17 +00:00
|
|
|
sha256 = "1s6bigkwymxdp9bkgvwg3lbf465i6k8kmak2w7czf4mhwavcfq63";
|
2014-07-29 21:13:47 +01:00
|
|
|
};
|
|
|
|
|
2016-01-17 21:00:39 +00:00
|
|
|
propagatedBuildInputs = with python3Packages; [
|
2017-11-09 10:56:12 +00:00
|
|
|
appdirs
|
2019-02-01 10:13:52 +00:00
|
|
|
cssselect
|
2016-07-09 11:16:30 +01:00
|
|
|
keyring
|
2018-09-03 21:14:39 +01:00
|
|
|
lxml
|
2016-01-17 21:00:39 +00:00
|
|
|
minidb
|
2017-11-09 10:56:12 +00:00
|
|
|
pycodestyle
|
2018-09-03 21:14:39 +01:00
|
|
|
pyyaml
|
2017-05-07 11:55:45 +01:00
|
|
|
requests
|
2020-11-17 19:58:17 +00:00
|
|
|
pyppeteer
|
2016-01-17 21:00:39 +00:00
|
|
|
];
|
2014-07-29 21:13:47 +01:00
|
|
|
|
2021-01-06 12:54:45 +00:00
|
|
|
# no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-07-29 21:13:47 +01:00
|
|
|
description = "A tool for monitoring webpages for updates";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://thp.io/2008/urlwatch/";
|
2016-12-02 04:14:22 +00:00
|
|
|
license = licenses.bsd3;
|
2020-11-17 19:58:17 +00:00
|
|
|
maintainers = with maintainers; [ kmein tv ];
|
2014-07-29 21:13:47 +01:00
|
|
|
};
|
|
|
|
}
|