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

python311Packages.apprise: 1.7.6 -> 1.8.0
This commit is contained in:
Fabian Affolter 2024-05-12 13:41:18 +02:00 committed by GitHub
commit 832e6a6905
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,38 +1,37 @@
{ lib
, babel
, buildPythonPackage
, click
, cryptography
, fetchPypi
, gntp
, installShellFiles
, markdown
, paho-mqtt
, pytest-mock
, pytest-xdist
, pytestCheckHook
, pythonOlder
, pyyaml
, requests
, requests-oauthlib
, setuptools
{
lib,
babel,
buildPythonPackage,
click,
cryptography,
fetchPypi,
gntp,
installShellFiles,
markdown,
paho-mqtt,
pytest-mock,
pytest-xdist,
pytestCheckHook,
pythonOlder,
pyyaml,
requests,
requests-oauthlib,
setuptools,
}:
buildPythonPackage rec {
pname = "apprise";
version = "1.7.6";
version = "1.8.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-B38JMJzIpskGPb1hSzQ4B9Un1UZpO3/o/FpEM1Av6mw=";
hash = "sha256-6PWM6/6ho09WnLTGiAmjF1voDsBvCi7Ec1IrkgIyEsU=";
};
nativeBuildInputs = [
installShellFiles
];
nativeBuildInputs = [ installShellFiles ];
build-system = [
babel
@ -70,9 +69,7 @@ buildPythonPackage rec {
installManPage packaging/man/apprise.1
'';
pythonImportsCheck = [
"apprise"
];
pythonImportsCheck = [ "apprise" ];
meta = with lib; {
description = "Push Notifications that work with just about every platform";