diff options
author | Ricardo Wurmus <[email protected]> | 2025-01-02 17:40:04 +0100 |
---|---|---|
committer | Ricardo Wurmus <[email protected]> | 2025-01-20 21:37:30 +0100 |
commit | 0721761beec5071aae4e8b826f630d0951ce1243 (patch) | |
tree | 7b98641896691093ac1469d07c0ee79b7e2d0b31 /gnu/packages/python-xyz.scm | |
parent | 66c5de6fc665a843dbdb2b889225d0b8cbf4043f (diff) |
gnu: python-apprise: Update to 1.9.1.
* gnu/packages/python-xyz.scm (python-apprise): Update to 1.9.1.
[propagated-inputs]: Remove python-dataclasses.
[native-inputs]: Remove python-coverage, python-cryptography, and
python-paho-mqtt.
Change-Id: I1fea6ae1fec1d89a3673c0632da7583e926b1970
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index b86d74e8fe..8151bfad29 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -314,13 +314,13 @@ (define-public python-apprise (package (name "python-apprise") - (version "1.7.4") + (version "1.9.1") (source (origin (method url-fetch) (uri (pypi-uri "apprise" version)) (sha256 - (base32 "0wvs1k71fipn617y9wsdcvwcgg2pd0nvriarlwl4438la4086ppg")))) + (base32 "12a6wh6ri2gr043ivghs0ivyfin80rfcqddv279gyvfq84nd1v3r")))) (build-system pyproject-build-system) (arguments (list @@ -331,21 +331,18 @@ " and not test_plugin_mqtt_tls_no_verify_success")))) (propagated-inputs (list python-certifi python-click - python-dataclasses python-markdown python-pyyaml python-requests python-requests-oauthlib)) - (native-inputs (list python-babel - python-coverage - python-cryptography - python-paho-mqtt - python-pytest - python-pytest-cov - python-pytest-mock - python-pytest-xdist - python-setuptools - python-wheel)) + (native-inputs + (list python-babel + python-pytest + python-pytest-cov + python-pytest-mock + python-pytest-xdist + python-setuptools + python-wheel)) (home-page "https://github.com/caronc/apprise") (synopsis "Push notification Python library that works with many platforms") |