summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-06-03 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2023-06-03 04:20:00 +0000
commit22a7f0cea1e279801f8ab62cd9d5484b66ede958 (patch)
tree4e3d9a21cf8ea630f472bb140f90243d07fa5b70
parent00fa9b899a765db64dd0ae4f0d5649e4aa9cee37 (diff)
downloadnixpkgs-22a7f0cea1e279801f8ab62cd9d5484b66ede958.tar
nixpkgs-22a7f0cea1e279801f8ab62cd9d5484b66ede958.tar.gz
nixpkgs-22a7f0cea1e279801f8ab62cd9d5484b66ede958.tar.bz2
nixpkgs-22a7f0cea1e279801f8ab62cd9d5484b66ede958.tar.lz
nixpkgs-22a7f0cea1e279801f8ab62cd9d5484b66ede958.tar.xz
nixpkgs-22a7f0cea1e279801f8ab62cd9d5484b66ede958.tar.zst
nixpkgs-22a7f0cea1e279801f8ab62cd9d5484b66ede958.zip
python310Packages.apprise: 1.3.0 -> 1.4.0
Changelog: https://github.com/caronc/apprise/releases/tag/v1.4.0
-rw-r--r--pkgs/development/python-modules/apprise/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/apprise/default.nix b/pkgs/development/python-modules/apprise/default.nix
index 1cc11426b48..c7a47f9b48f 100644
--- a/pkgs/development/python-modules/apprise/default.nix
+++ b/pkgs/development/python-modules/apprise/default.nix
@@ -19,14 +19,14 @@
 
 buildPythonPackage rec {
   pname = "apprise";
-  version = "1.3.0";
+  version = "1.4.0";
   format = "setuptools";
 
   disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-LFDBml3UExex9lnFKyGpkP6+bBXghGQiihzo5gmPEb8=";
+    hash = "sha256-4xUFNIVNrFPU8Hg42Mv7Is4NRdQuugX5bWbE9IQ81Vo=";
   };
 
   nativeBuildInputs = [