nixpkgs/pkgs/tools/networking/urlwatch/default.nix

32 lines
685 B
Nix
Raw Normal View History

2016-12-02 04:14:22 +00:00
{ stdenv, fetchFromGitHub, python3Packages }:
2014-07-29 20:13:47 +00:00
python3Packages.buildPythonApplication rec {
2016-12-02 04:14:22 +00:00
name = "urlwatch-${version}";
version = "2.17";
2014-07-29 20:13:47 +00:00
2016-12-02 04:14:22 +00:00
src = fetchFromGitHub {
owner = "thp";
repo = "urlwatch";
rev = version;
sha256 = "1865p3yczgpq8gvgh4cpgbx2ibc1fwycd7pagga9sj8r3q0giqyk";
2014-07-29 20:13:47 +00: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 10:16:30 +00:00
keyring
2018-09-03 20:14:39 +00:00
lxml
2016-01-17 21:00:39 +00:00
minidb
2017-11-09 10:56:12 +00:00
pycodestyle
2018-09-03 20:14:39 +00:00
pyyaml
requests
2016-01-17 21:00:39 +00:00
];
2014-07-29 20:13:47 +00:00
2016-12-02 04:14:22 +00:00
meta = with stdenv.lib; {
2014-07-29 20:13:47 +00:00
description = "A tool for monitoring webpages for updates";
homepage = https://thp.io/2008/urlwatch/;
2016-12-02 04:14:22 +00:00
license = licenses.bsd3;
maintainers = with maintainers; [ tv ];
2014-07-29 20:13:47 +00:00
};
}