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

30 lines
661 B
Nix
Raw Normal View History

2016-12-01 20:14:22 -08:00
{ stdenv, fetchFromGitHub, python3Packages }:
2014-07-29 13:13:47 -07:00
python3Packages.buildPythonApplication rec {
2016-12-01 20:14:22 -08:00
name = "urlwatch-${version}";
2017-11-09 02:56:12 -08:00
version = "2.7";
2014-07-29 13:13:47 -07:00
2016-12-01 20:14:22 -08:00
src = fetchFromGitHub {
owner = "thp";
repo = "urlwatch";
rev = version;
2017-11-09 02:56:12 -08:00
sha256 = "0fx964z73yv08b1lpymmjsigf6929zx9ax5bp34rcf2c5gk11l5m";
2014-07-29 13:13:47 -07:00
};
2016-01-17 13:00:39 -08:00
propagatedBuildInputs = with python3Packages; [
2017-11-09 02:56:12 -08:00
appdirs
2016-07-09 03:16:30 -07:00
keyring
2016-01-17 13:00:39 -08:00
minidb
pyyaml
2017-11-09 02:56:12 -08:00
pycodestyle
requests
2016-01-17 13:00:39 -08:00
];
2014-07-29 13:13:47 -07:00
2016-12-01 20:14:22 -08:00
meta = with stdenv.lib; {
2014-07-29 13:13:47 -07:00
description = "A tool for monitoring webpages for updates";
homepage = https://thp.io/2008/urlwatch/;
2016-12-01 20:14:22 -08:00
license = licenses.bsd3;
maintainers = with maintainers; [ tv ];
2014-07-29 13:13:47 -07:00
};
}