mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add python-glue-qt.
* gnu/packages/astronomy.scm (python-glue-qt): New variable. Change-Id: I44a58be6282a76bbd20e5501012a41b87563c5c3
This commit is contained in:
parent
80ac82d6ab
commit
fcfe95b077
1 changed files with 42 additions and 0 deletions
|
@ -1237,6 +1237,48 @@ astronomy-specific functionality")
|
||||||
across many files.")
|
across many files.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public python-glue-qt
|
||||||
|
(package
|
||||||
|
(name "python-glue-qt")
|
||||||
|
(version "0.3.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "glue-qt" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "15ycykhg02xmsrlyv90qxckssmrq355qaqmz7p8nnqygm0gyrnx1"))))
|
||||||
|
(build-system pyproject-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-before 'check 'prepare-x
|
||||||
|
(lambda _
|
||||||
|
(system "Xvfb &")
|
||||||
|
(setenv "DISPLAY" ":0")
|
||||||
|
(setenv "HOME" "/tmp"))))))
|
||||||
|
(propagated-inputs
|
||||||
|
(list python-astropy
|
||||||
|
python-echo
|
||||||
|
python-glue-core
|
||||||
|
python-ipykernel
|
||||||
|
python-ipython
|
||||||
|
python-matplotlib
|
||||||
|
python-numpy
|
||||||
|
python-pvextractor
|
||||||
|
python-qtconsole
|
||||||
|
python-qtpy
|
||||||
|
python-scipy))
|
||||||
|
(native-inputs
|
||||||
|
(list python-objgraph
|
||||||
|
python-pytest
|
||||||
|
python-setuptools-scm
|
||||||
|
xorg-server-for-tests))
|
||||||
|
(home-page "http://glueviz.org")
|
||||||
|
(synopsis "Multidimensional data visualization across files")
|
||||||
|
(description "Multidimensional data visualization across files.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public python-pvextractor
|
(define-public python-pvextractor
|
||||||
(package
|
(package
|
||||||
(name "python-pvextractor")
|
(name "python-pvextractor")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue