Merge pull request #114306 from r-ryantm/auto-update/apprise

apprise: 0.9.0 -> 0.9.1

authored by

Mario Rodas and committed by
GitHub
f8e62134 46a4f1ce

+6 -4
+6 -4
pkgs/development/python-modules/apprise/default.nix
··· 1 { lib, buildPythonPackage, fetchPypi, installShellFiles 2 - , Babel, requests, requests_oauthlib, six, click, markdown, pyyaml 3 , pytestrunner, coverage, flake8, mock, pytestCheckHook, pytestcov, tox, gntp, sleekxmpp 4 }: 5 6 buildPythonPackage rec { 7 pname = "apprise"; 8 - version = "0.9.0"; 9 10 src = fetchPypi { 11 inherit pname version; 12 - sha256 = "bab3563bc1e0c64938c4c7700112797bd99f20eb5d4a3e6038338bc8f060e153"; 13 }; 14 15 nativeBuildInputs = [ Babel installShellFiles ]; 16 17 propagatedBuildInputs = [ 18 - requests requests_oauthlib six click markdown pyyaml 19 ]; 20 21 checkInputs = [ ··· 27 postInstall = '' 28 installManPage packaging/man/apprise.1 29 ''; 30 31 meta = with lib; { 32 homepage = "https://github.com/caronc/apprise";
··· 1 { lib, buildPythonPackage, fetchPypi, installShellFiles 2 + , Babel, requests, requests_oauthlib, six, click, markdown, pyyaml, cryptography 3 , pytestrunner, coverage, flake8, mock, pytestCheckHook, pytestcov, tox, gntp, sleekxmpp 4 }: 5 6 buildPythonPackage rec { 7 pname = "apprise"; 8 + version = "0.9.1"; 9 10 src = fetchPypi { 11 inherit pname version; 12 + sha256 = "sha256-FW5gt35yoXVr2+hiGBDJ/5jFFfIpn2Z9sDN8acoO4FI="; 13 }; 14 15 nativeBuildInputs = [ Babel installShellFiles ]; 16 17 propagatedBuildInputs = [ 18 + cryptography requests requests_oauthlib six click markdown pyyaml 19 ]; 20 21 checkInputs = [ ··· 27 postInstall = '' 28 installManPage packaging/man/apprise.1 29 ''; 30 + 31 + pythonImportsCheck = [ "apprise" ]; 32 33 meta = with lib; { 34 homepage = "https://github.com/caronc/apprise";