blob: bdcff749f2170f11b3360767353a48f73181f60a (
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-kikuchipy
pkgshort=kikuchipy
pkgver=0.11.0
pkgrel=2
pkgdesc="Processing and analysis of electron backscatter diffraction (EBSD) patterns."
arch=('any')
url="https://kikuchipy.org/"
license=('GPL3')
depends=('python'
'python-dask>=2021.8.1'
'python-diffpy.structure>=3'
'python-diffsims>=0.5.2'
'python-hyperspy>=2.2'
'python-h5py>=2.10'
'python-imageio'
'python-matplotlib>=3.5'
'python-numpy>=1.23.0'
'python-numba>=0.57'
'python-orix>=0.12.1'
'python-pooch>=1.3.0'
'python-pyyaml'
'python-tqdm>=0.5.2'
'python-scikit-image>=0.16.2'
'python-scikit-learn'
'python-scipy>=1.7'
'python-tqdm>=0.5.2'
)
makedepends=('python-setuptools' )
optdepends=('python-pyvista: visualization',
'python-pyebsdindex>=0.3.2: orientation indexing')
provides=('kikuchipy')
source=(https://github.com/pyxem/kikuchipy/archive/v$pkgver.tar.gz)
package() {
cd "$srcdir/$pkgshort-$pkgver"
export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
python -m build --wheel --no-isolation
}
md5sums=('29f8a479c6836732d05bd27883bed3fb')
|