mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-apprise: Fix build.
* gnu/packages/python-xyz.scm (python-apprise): Fix build failures. [native-inputs]: Remove unused python-flake8. [arguments]: turn off mqltt_tls tests that fail. Change-Id: Ia1a5b3d6ff284dc57f083c4bdbd1f6356be7a700 Signed-off-by: jgart <jgart@dismail.de>
This commit is contained in:
parent
851da3ebbe
commit
721ba07e24
1 changed files with 10 additions and 7 deletions
|
@ -326,7 +326,6 @@
|
||||||
(native-inputs (list python-babel
|
(native-inputs (list python-babel
|
||||||
python-coverage
|
python-coverage
|
||||||
python-cryptography
|
python-cryptography
|
||||||
python-flake8
|
|
||||||
python-paho-mqtt
|
python-paho-mqtt
|
||||||
python-pytest
|
python-pytest
|
||||||
python-pytest-cov
|
python-pytest-cov
|
||||||
|
@ -335,12 +334,16 @@
|
||||||
python-wheel))
|
python-wheel))
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
#:phases #~(modify-phases %standard-phases
|
#:phases
|
||||||
(replace 'check
|
#~(modify-phases %standard-phases
|
||||||
(lambda* (#:key tests? inputs outputs #:allow-other-keys)
|
(replace 'check
|
||||||
(when tests?
|
(lambda* (#:key tests? inputs outputs #:allow-other-keys)
|
||||||
(delete-file "test/test_plugin_macosx.py")
|
(when tests?
|
||||||
(invoke "pytest")))))))
|
(delete-file "test/test_plugin_macosx.py")
|
||||||
|
(invoke "pytest" "-vv" "-k"
|
||||||
|
(string-append
|
||||||
|
"not test_plugin_mqtt_tls_connect_success"
|
||||||
|
" and not test_plugin_mqtt_tls_no_verify_success"))))))))
|
||||||
(home-page "https://github.com/caronc/apprise")
|
(home-page "https://github.com/caronc/apprise")
|
||||||
(synopsis
|
(synopsis
|
||||||
"Push notification Python library that works with many platforms")
|
"Push notification Python library that works with many platforms")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue