blob: e4ef0f9d7f404237cf43c15feb92acdf8ad9af0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Maintainer: Astro Benzene <universebenzene at sina dot com>
# Maintainer: Ista Zahn <istazahn@gmail.com>
pkgname=python-glue-vispy-viewers
_pyname=glue_vispy_viewers
pkgver=1.2.2
pkgrel=1
pkgdesc="3-d data viewers for glue based on VisPy"
arch=('any')
url="http://docs.glueviz.org/en/stable/gui_guide/3d_viewers.html"
license=('BSD-2-Clause')
makedepends=('python-setuptools-scm')
checkdepends=('python-pytest'
'python-glue-core'
'python-opengl'
'python-vispy')
source=("https://files.pythonhosted.org/packages/source/${_pyname:0:1}/${_pyname}/${_pyname}-${pkgver}.tar.gz")
sha256sums=('296a02901790f69a66f3a06749887235b8ce9028590f894e5ccb7d05372cf116')
build() {
cd ${srcdir}/${_pyname}-${pkgver}
python setup.py build
}
check() {
cd ${srcdir}/${_pyname}-${pkgver}
pytest || warning "Tests failed" # -vv -l -ra --color=yes -o console_output_style=count
}
package() {
depends=('python>=3.8' 'python-matplotlib' 'python-opengl' 'python-scipy' 'python-glue-core>=1.13.1' 'python-vispy>=0.12.0' 'python-glfw' 'python-imageio')
optdepends=('python-qtpy: pyqt, pyside'
'python-glue-qt: pyqt, pyside'
'python-pyqt6: pyqt'
'pyside6: pyside')
cd "${srcdir}/${_pyname}-${pkgver}"
python setup.py install -O1 --root="${pkgdir}"
install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
install -Dm 644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README"
}
|