about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRenaud <c0bw3b@users.noreply.github.com>2017-11-10 20:20:19 +0100
committerGitHub <noreply@github.com>2017-11-10 20:20:19 +0100
commit5022edd9eaafb9ae996d3ac603948b08f52c1fe5 (patch)
tree262f91a107aad91ae1593735ccbbe3ca36e8f1ae /pkgs
parente62e4c1e4a6fc97a37278613e6e58059f62f4f4e (diff)
parent146746effac53e42302cdf3e8b0f02c72e617f51 (diff)
Merge pull request #31435 from 4z3/urlwatch
urlwatch: 2.5 -> 2.7
Diffstat (limited to 'pkgs')
-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 8161f700ce184..6a322f649ac41 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
   ];