stockholm/krebs/5pkgs/simple/urlwatch/default.nix

27 lines
647 B
Nix
Raw Normal View History

2016-01-17 20:41:54 +00:00
{ stdenv, fetchurl, python3Packages }:
python3Packages.buildPythonPackage rec {
2017-06-18 17:53:58 +00:00
name = "urlwatch-${meta.version}";
2016-01-17 20:41:54 +00:00
src = fetchurl {
2017-06-18 17:53:58 +00:00
url = "https://github.com/thp/urlwatch/archive/${meta.version}.tar.gz";
sha256 = "09bn31gn03swi7yr3s1ql8x07hx96gap1ka77kk44kk0lvfxn55b";
2016-01-17 20:41:54 +00:00
};
propagatedBuildInputs = with python3Packages; [
keyring
2016-02-05 14:11:22 +00:00
minidb
2017-06-18 19:48:21 +00:00
pycodestyle
2016-02-05 14:11:22 +00:00
pyyaml
requests2
2016-01-17 20:41:54 +00:00
];
meta = {
description = "A tool for monitoring webpages for updates";
homepage = https://thp.io/2008/urlwatch/;
license = stdenv.lib.licenses.bsd3;
maintainers = [ stdenv.lib.maintainers.tv ];
2017-06-18 17:53:58 +00:00
version = "2.6";
2016-01-17 20:41:54 +00:00
};
2016-02-05 14:11:22 +00:00
}