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
This commit is contained in:
Sharlatan Hellseher 2025-04-17 08:31:52 +01:00
parent 5698a05a07
commit ae5e5cb697
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -321,44 +321,41 @@
(define-public python-apprise (define-public python-apprise
(package (package
(name "python-apprise") (name "python-apprise")
(version "1.9.2") (version "1.9.3")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "apprise" version)) (uri (pypi-uri "apprise" version))
(sha256 (sha256
(base32 "1a3kzpjdp29l4ryafd36gs8apg61f16ljw93h1051p98f0hv23i9")))) (base32 "19k51ici58134m61f6di0m36mbqgdyr6r31i8v6rk22vldz6d0zm"))))
(build-system pyproject-build-system) (build-system pyproject-build-system)
(arguments (arguments
(list (list
#:test-flags #:test-flags
#~(list "--numprocesses" (number->string (parallel-job-count)) #~(list "--numprocesses" (number->string (parallel-job-count))
"--ignore=test/test_plugin_macosx.py" "--ignore=test/test_plugin_macosx.py"
"-k" (string-append "not test_plugin_mqtt_tls_connect_success" ;; AssertionError
" and not test_plugin_mqtt_tls_no_verify_success" "--deselect=test/test_plugin_wxpusher.py::test_plugin_wxpusher_urls")))
;; 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))
(native-inputs (native-inputs
(list python-babel (list python-babel
python-pytest python-pytest
python-pytest-cov
python-pytest-mock python-pytest-mock
python-pytest-xdist python-pytest-xdist
python-setuptools python-setuptools
python-wheel)) 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") (home-page "https://github.com/caronc/apprise")
(synopsis (synopsis "Push notification library")
"Push notification Python library that works with many platforms")
(description (description
"Apprise is a Python library that allows sending push notifications to a broad "Apprise is a Python library that allows sending push notifications to a
range of notification services, such as Telegram, Discord, Slack, Amazon SNS, broad range of notification services, such as Telegram, Discord, Slack, Amazon
Gotify, etc.") SNS, Gotify, etc.")
(license license:bsd-2))) (license license:bsd-2)))
(define-public python-archspec (define-public python-archspec