diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-17 08:31:52 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-17 08:31:59 +0100 |
commit | ae5e5cb697fc84cb32bf8cc029aab2484082285b (patch) | |
tree | 237e19feee2a2494a1aa6067dd78d9804ba0b05a | |
parent | 5698a05a07350587b9de04c2260af0d61a0c9825 (diff) | |
download | guix-ae5e5cb697fc84cb32bf8cc029aab2484082285b.tar.gz guix-ae5e5cb697fc84cb32bf8cc029aab2484082285b.zip |
gnu: python-apprise: Update to 1.9.3.
* gnu/packages/python-xyz.scm (python-apprise): Update to 1.9.3, fix
build.
[arguments] <test-flags>: Deselect only one freshly failing test.
[native-inputs]: Remove python-pytest-cov.
[synopsis]: Simplify.
[description]: Fix fill paragraph indentation.
Change-Id: If546f2b18da5ed6c25c94557d8f8ee89f67f3e9a
-rw-r--r-- | gnu/packages/python-xyz.scm | 33 |
1 files changed, 15 insertions, 18 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index f640d910dc..7f539634d1 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -321,44 +321,41 @@ (define-public python-apprise (package (name "python-apprise") - (version "1.9.2") + (version "1.9.3") (source (origin (method url-fetch) (uri (pypi-uri "apprise" version)) (sha256 - (base32 "1a3kzpjdp29l4ryafd36gs8apg61f16ljw93h1051p98f0hv23i9")))) + (base32 "19k51ici58134m61f6di0m36mbqgdyr6r31i8v6rk22vldz6d0zm")))) (build-system pyproject-build-system) (arguments (list #:test-flags #~(list "--numprocesses" (number->string (parallel-job-count)) "--ignore=test/test_plugin_macosx.py" - "-k" (string-append "not test_plugin_mqtt_tls_connect_success" - " and not test_plugin_mqtt_tls_no_verify_success" - ;; AssertionError: assert False - " and not test_plugin_wxpusher_edge_cases")))) - (propagated-inputs (list python-certifi - python-click - python-markdown - python-pyyaml - python-requests - python-requests-oauthlib)) + ;; AssertionError + "--deselect=test/test_plugin_wxpusher.py::test_plugin_wxpusher_urls"))) (native-inputs (list python-babel python-pytest - python-pytest-cov python-pytest-mock python-pytest-xdist python-setuptools python-wheel)) + (propagated-inputs + (list python-certifi + python-click + python-markdown + python-pyyaml + python-requests + python-requests-oauthlib)) (home-page "https://github.com/caronc/apprise") - (synopsis - "Push notification Python library that works with many platforms") + (synopsis "Push notification library") (description - "Apprise is a Python library that allows sending push notifications to a broad -range of notification services, such as Telegram, Discord, Slack, Amazon SNS, -Gotify, etc.") + "Apprise is a Python library that allows sending push notifications to a +broad range of notification services, such as Telegram, Discord, Slack, Amazon +SNS, Gotify, etc.") (license license:bsd-2))) (define-public python-archspec |