blob: b6ce35ff49d0767ab2b88adec40309dc49b00a60 (
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
45
46
47
48
|
# Contributor: Jonas Lähnemann <jonas at pdi-berlin dot de>
# Maintainer: Jonas Lähnemann <jonas at pdi-berlin dot de>
pkgname=python-pyxem
pkgshort=pyxem
pkgver=0.19.1
pkgrel=0
pkgdesc="Python library for multi-dimensional diffraction microscopy extending HyperSpy"
arch=('any')
url="https://pyxem.github.io/pyxem-website/"
license=('GPL3')
depends=('python>=3.7'
'python-dask'
'python-diffsims>=0.5'
'python-hyperspy>=2.0'
'python-h5py'
'python-lmfit>=0.9.12'
'python-matplotlib>=3.6'
'python-numba'
'python-numpy'
'python-numexpr'
'python-orix>=0.9'
'python-pooch'
'python-psutil'
'python-pyfai'
'python-scikit-image>=0.19.0'
'python-scikit-learn>=1.0'
'python-scipy'
'python-shapely>2.0.0'
'python-silx'
'python-tqdm'
'python-traits'
'python-transforms3d'
'python-zarr'
)
makedepends=('python-setuptools' )
provides=('pyxem')
source=(https://github.com/pyxem/pyxem/archive/v$pkgver.tar.gz)
package() {
cd "$srcdir/$pkgshort-$pkgver"
python setup.py install --root="$pkgdir/" --optimize=1
}
md5sums=('c8535a68c3bc2a9c21d7f01518ea8937')
|