diff options
author | Hugo Buddelmeijer <hugo@buddelmeijer.nl> | 2025-09-26 19:37:34 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-28 00:04:52 +0100 |
commit | cf7a0a747e81b08cd51208e1768ffda901209a55 (patch) | |
tree | 4b3622081e4ba9d31e3b91c2f63fc1e1636fa5d2 /gnu/packages/python-xyz.scm | |
parent | 0c3cac7e0e736a5ae6c824b062c32d8aea8655ae (diff) |
gnu: python-apprise: Update to 1.9.4.
* gnu/packages/python-xyz.scm (python-apprise): Update to 1.9.4.
[arguments] <#:test-flags>: Remove --numprocesses in the hope to make
the tests more deterministic.
[propagated-inputs]: Add python-pygobject.
[native-inputs]: Remove python-pytest-xdist, and python-wheel.
Change-Id: I3c63be39433d9044b0c994c7adb5ab6a4e9f2a2d
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index ef95f3a05d..96a74635ff 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -348,32 +348,31 @@ user.") (define-public python-apprise (package (name "python-apprise") - (version "1.9.3") + (version "1.9.4") (source (origin (method url-fetch) (uri (pypi-uri "apprise" version)) (sha256 - (base32 "19k51ici58134m61f6di0m36mbqgdyr6r31i8v6rk22vldz6d0zm")))) + (base32 "126951n9lnlqrw5lbsvs9xs7jzg33bqqxm7cfnqag2csw6p24ca8")))) (build-system pyproject-build-system) (arguments (list + ;; These tests used to be ran with --numprocesses, but that seems to have + ;; made them non-deterministic. #:test-flags - #~(list "--numprocesses" (number->string (parallel-job-count)) - "--ignore=test/test_plugin_macosx.py" - ;; AssertionError - "--deselect=test/test_plugin_wxpusher.py::test_plugin_wxpusher_urls"))) + #~(list "--ignore=tests/test_plugin_macosx.py" + "-k" "not test_plugin_glib_send_raises_generic"))) (native-inputs (list python-babel python-pytest python-pytest-mock - python-pytest-xdist - python-setuptools - python-wheel)) + python-setuptools)) (propagated-inputs (list python-certifi python-click python-markdown + python-pygobject python-pyyaml python-requests python-requests-oauthlib)) |