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

28 lines
634 B
Nix
Raw Normal View History

2016-12-02 05:14:22 +01:00
{ stdenv, fetchFromGitHub, python3Packages }:
2014-07-29 22:13:47 +02:00
python3Packages.buildPythonApplication rec {
2016-12-02 05:14:22 +01:00
name = "urlwatch-${version}";
version = "2.5";
2014-07-29 22:13:47 +02:00
2016-12-02 05:14:22 +01:00
src = fetchFromGitHub {
owner = "thp";
repo = "urlwatch";
rev = version;
sha256 = "0irz54nvyq3cxa3fvjc5k2836a5nmly4wiiy4s5cwib1rnwg6r94";
2014-07-29 22:13:47 +02:00
};
2016-01-17 22:00:39 +01:00
propagatedBuildInputs = with python3Packages; [
2016-07-09 12:16:30 +02:00
keyring
2016-01-17 22:00:39 +01:00
minidb
pyyaml
2016-04-15 22:23:01 +02:00
requests2
2016-01-17 22:00:39 +01:00
];
2014-07-29 22:13:47 +02:00
2016-12-02 05:14:22 +01:00
meta = with stdenv.lib; {
2014-07-29 22:13:47 +02:00
description = "A tool for monitoring webpages for updates";
homepage = https://thp.io/2008/urlwatch/;
2016-12-02 05:14:22 +01:00
license = licenses.bsd3;
maintainers = with maintainers; [ tv ];
2014-07-29 22:13:47 +02:00
};
}