me
/
guix
Archived
1
0
Fork 0

gnu: Add python-orange-widget-base.

* gnu/packages/orange.scm (python-orange-widget-base): New variable.

Signed-off-by: Leo Famulari <leo@famulari.name>
master
Vinicius Monego 2021-04-25 03:26:03 +00:00 committed by Leo Famulari
parent f76ffea242
commit 13b2bfad29
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08
1 changed files with 35 additions and 0 deletions

View File

@ -64,3 +64,38 @@
for editing workflows. It is a component used to build the Orange Canvas
data-mining application.")
(license license:gpl3)))
(define-public python-orange-widget-base
(package
(name "python-orange-widget-base")
(version "4.12.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "orange-widget-base" version))
(sha256
(base32 "13sy3s8rdqs3i3ghixljpqvnfz81qmbb0kqlasw39zvf39qc22kz"))))
(build-system python-build-system)
(arguments
`(;; unittest fails to load one test, all other tests are passing:
;; AttributeError: module 'orangewidget' has no attribute 'version'.
#:tests? #f
#:phases
(modify-phases %standard-phases
(add-before 'check 'check-setup
(lambda _
(setenv "HOME" "/tmp")
(setenv "QT_QPA_PLATFORM" "offscreen")
#t)))))
(propagated-inputs
`(("python-anyqt" ,python-anyqt)
("python-matplotlib" ,python-matplotlib)
("python-orange-canvas-core"
,python-orange-canvas-core)
("python-pyqtgraph" ,python-pyqtgraph)))
(home-page "https://github.com/biolab/orange-widget-base")
(synopsis "Base Widget for Orange Canvas")
(description
"Orange Widget Base provides a base widget component for a interactive
GUI based workflow. It is primarily used in the Orange framework.")
(license license:gpl3+)))