about summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2019-09-27 22:09:01 -0700
committerMario Rodas <marsam@users.noreply.github.com>2019-09-27 22:09:01 -0700
commitf1688df276f0dc5588ac51e2125f80a53a5d23ca (patch)
treeee7110580c19f9bae143ffa3f936d3710a8a8e24
parent15f9bdb6489e7e55a861958a9388bf5ad3b2d2cd (diff)
downloadnixlib-f1688df276f0dc5588ac51e2125f80a53a5d23ca.tar
nixlib-f1688df276f0dc5588ac51e2125f80a53a5d23ca.tar.gz
nixlib-f1688df276f0dc5588ac51e2125f80a53a5d23ca.tar.bz2
nixlib-f1688df276f0dc5588ac51e2125f80a53a5d23ca.tar.lz
nixlib-f1688df276f0dc5588ac51e2125f80a53a5d23ca.tar.xz
nixlib-f1688df276f0dc5588ac51e2125f80a53a5d23ca.tar.zst
nixlib-f1688df276f0dc5588ac51e2125f80a53a5d23ca.zip
python37Packages.apprise: 0.7.9 -> 0.8.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-apprise/versions
-rw-r--r--pkgs/development/python-modules/apprise/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/apprise/default.nix b/pkgs/development/python-modules/apprise/default.nix
index 7b8885de1697..c2c542a8c017 100644
--- a/pkgs/development/python-modules/apprise/default.nix
+++ b/pkgs/development/python-modules/apprise/default.nix
@@ -1,21 +1,21 @@
 { lib, buildPythonPackage, fetchPypi
-, Babel, decorator, requests, requests_oauthlib, six, click, markdown, pyyaml
+, Babel, requests, requests_oauthlib, six, click, markdown, pyyaml
 , pytestrunner, coverage, flake8, mock, pytest, pytestcov, tox
 }:
 
 buildPythonPackage rec {
   pname = "apprise";
-  version = "0.7.9";
+  version = "0.8.0";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "0zqnk255d311ibird08sv0c21fw1r1xhldhyx5lnl3ji1xkv9173";
+    sha256 = "02apbzckj158995k9ls0gr1m9hfk7nw3ck0bp7k41srl5wdys72i";
   };
 
   nativeBuildInputs = [ Babel ];
 
   propagatedBuildInputs = [
-    decorator requests requests_oauthlib six click markdown pyyaml
+    requests requests_oauthlib six click markdown pyyaml
   ];
 
   checkInputs = [