diff options
author | Vinicius Monego <monego@posteo.net> | 2022-01-14 20:09:26 +0000 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2022-01-14 21:30:00 +0100 |
commit | f7b6bc9d88d71d283bc0633a55db18f7fccff8fe (patch) | |
tree | a6329b1ce5fcf96ac1e277d636fb697b3cf86a29 /gnu | |
parent | b678f1f8b913eec2e346c4cb50a382caecea4aea (diff) |
gnu: python-orange-widget-base: Update to 4.16.1.
* gnu/packages/orange.scm (python-orange-widget-base): Update to 4.16.1.
[arguments]<#:phases>: Don't return #t.
[propagated-inputs]: Add python-typing-extensions.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/orange.scm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/packages/orange.scm b/gnu/packages/orange.scm index 615e7cec68..710be87cb0 100644 --- a/gnu/packages/orange.scm +++ b/gnu/packages/orange.scm @@ -71,13 +71,13 @@ data-mining application.") (define-public python-orange-widget-base (package (name "python-orange-widget-base") - (version "4.12.0") + (version "4.16.1") (source (origin (method url-fetch) (uri (pypi-uri "orange-widget-base" version)) (sha256 - (base32 "13sy3s8rdqs3i3ghixljpqvnfz81qmbb0kqlasw39zvf39qc22kz")))) + (base32 "0a0sijsvzijj71sxq8ckpgz59z1cq9sxn4fya3z23ibdzjzwrsi7")))) (build-system python-build-system) (arguments `(;; unittest fails to load one test, all other tests are passing: @@ -88,11 +88,10 @@ data-mining application.") (add-before 'check 'check-setup (lambda _ (setenv "HOME" "/tmp") - (setenv "QT_QPA_PLATFORM" "offscreen") - #t))))) + (setenv "QT_QPA_PLATFORM" "offscreen")))))) (propagated-inputs (list python-anyqt python-matplotlib python-orange-canvas-core - python-pyqtgraph)) + python-pyqtgraph python-typing-extensions)) (home-page "https://github.com/biolab/orange-widget-base") (synopsis "Base Widget for Orange Canvas") (description |