linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / networking / urlwatch / default.nix
blob1cea3989ed2638c90c531e3a1d08cae21d10ea0a
1 { lib, fetchFromGitHub, python3Packages }:
3 python3Packages.buildPythonApplication rec {
4   pname = "urlwatch";
5   version = "2.21";
7   src = fetchFromGitHub {
8     owner  = "thp";
9     repo   = "urlwatch";
10     rev    = version;
11     sha256 = "1s6bigkwymxdp9bkgvwg3lbf465i6k8kmak2w7czf4mhwavcfq63";
12   };
14   propagatedBuildInputs = with python3Packages; [
15     appdirs
16     cssselect
17     keyring
18     lxml
19     minidb
20     pycodestyle
21     pyyaml
22     requests
23     pyppeteer
24   ];
26   # no tests
27   doCheck = false;
29   meta = with lib; {
30     description = "A tool for monitoring webpages for updates";
31     homepage = "https://thp.io/2008/urlwatch/";
32     license = licenses.bsd3;
33     maintainers = with maintainers; [ kmein tv ];
34   };