Merge pull request #310967 from r-ryantm/auto-update/python311Packages.apprise

python311Packages.apprise: 1.7.6 -> 1.8.0

authored by Fabian Affolter and committed by GitHub 832e6a69 89492912

+23 -26
+23 -26
pkgs/development/python-modules/apprise/default.nix
··· 1 - { lib 2 - , babel 3 - , buildPythonPackage 4 - , click 5 - , cryptography 6 - , fetchPypi 7 - , gntp 8 - , installShellFiles 9 - , markdown 10 - , paho-mqtt 11 - , pytest-mock 12 - , pytest-xdist 13 - , pytestCheckHook 14 - , pythonOlder 15 - , pyyaml 16 - , requests 17 - , requests-oauthlib 18 - , setuptools 1 + { 2 + lib, 3 + babel, 4 + buildPythonPackage, 5 + click, 6 + cryptography, 7 + fetchPypi, 8 + gntp, 9 + installShellFiles, 10 + markdown, 11 + paho-mqtt, 12 + pytest-mock, 13 + pytest-xdist, 14 + pytestCheckHook, 15 + pythonOlder, 16 + pyyaml, 17 + requests, 18 + requests-oauthlib, 19 + setuptools, 19 20 }: 20 21 21 22 buildPythonPackage rec { 22 23 pname = "apprise"; 23 - version = "1.7.6"; 24 + version = "1.8.0"; 24 25 pyproject = true; 25 26 26 27 disabled = pythonOlder "3.7"; 27 28 28 29 src = fetchPypi { 29 30 inherit pname version; 30 - hash = "sha256-B38JMJzIpskGPb1hSzQ4B9Un1UZpO3/o/FpEM1Av6mw="; 31 + hash = "sha256-6PWM6/6ho09WnLTGiAmjF1voDsBvCi7Ec1IrkgIyEsU="; 31 32 }; 32 33 33 - nativeBuildInputs = [ 34 - installShellFiles 35 - ]; 34 + nativeBuildInputs = [ installShellFiles ]; 36 35 37 36 build-system = [ 38 37 babel ··· 70 69 installManPage packaging/man/apprise.1 71 70 ''; 72 71 73 - pythonImportsCheck = [ 74 - "apprise" 75 - ]; 72 + pythonImportsCheck = [ "apprise" ]; 76 73 77 74 meta = with lib; { 78 75 description = "Push Notifications that work with just about every platform";