summary refs log tree commit diff
path: root/pkgs/tools/networking/urlwatch
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2017-11-09 11:56:12 +0100
committertv <tv@krebsco.de>2017-11-09 11:58:13 +0100
commit146746effac53e42302cdf3e8b0f02c72e617f51 (patch)
tree70f30a6518ff27e16fad8877ecac1ef2dfea6c6d /pkgs/tools/networking/urlwatch
parent5ba3ad5096a3f8f22999035016c211aaa2cf25c6 (diff)
downloadnixpkgs-146746effac53e42302cdf3e8b0f02c72e617f51.tar
nixpkgs-146746effac53e42302cdf3e8b0f02c72e617f51.tar.gz
nixpkgs-146746effac53e42302cdf3e8b0f02c72e617f51.tar.bz2
nixpkgs-146746effac53e42302cdf3e8b0f02c72e617f51.tar.lz
nixpkgs-146746effac53e42302cdf3e8b0f02c72e617f51.tar.xz
nixpkgs-146746effac53e42302cdf3e8b0f02c72e617f51.tar.zst
nixpkgs-146746effac53e42302cdf3e8b0f02c72e617f51.zip
urlwatch: 2.5 -> 2.7
Diffstat (limited to 'pkgs/tools/networking/urlwatch')
-rw-r--r--pkgs/tools/networking/urlwatch/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/tools/networking/urlwatch/default.nix b/pkgs/tools/networking/urlwatch/default.nix
index 8161f700ce1..6a322f649ac 100644
--- a/pkgs/tools/networking/urlwatch/default.nix
+++ b/pkgs/tools/networking/urlwatch/default.nix
@@ -2,19 +2,21 @@
 
 python3Packages.buildPythonApplication rec {
   name = "urlwatch-${version}";
-  version = "2.5";
+  version = "2.7";
 
   src = fetchFromGitHub {
     owner  = "thp";
     repo   = "urlwatch";
     rev    = version;
-    sha256 = "0irz54nvyq3cxa3fvjc5k2836a5nmly4wiiy4s5cwib1rnwg6r94";
+    sha256 = "0fx964z73yv08b1lpymmjsigf6929zx9ax5bp34rcf2c5gk11l5m";
   };
 
   propagatedBuildInputs = with python3Packages; [
+    appdirs
     keyring
     minidb
     pyyaml
+    pycodestyle
     requests
   ];