sharlatan pushed a commit to branch python-team
in repository guix.

commit ae5e5cb697fc84cb32bf8cc029aab2484082285b
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Apr 17 08:31:52 2025 +0100

    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
---
 gnu/packages/python-xyz.scm | 33 +++++++++++++++------------------
 1 file 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

Reply via email to