blob: 9b66b73c2f016d71dbc6c815dd6693aec66cd1c0 (
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
|
# Maintainer: getzze <getzze at gmail dot com>
pkgname=python-pingouin
_name=${pkgname#python-}
pkgver=0.5.5
pkgrel=2
pkgdesc='Statistical package for Python'
arch=(any)
url=https://pingouin-stats.org/build/html/index.html
license=(GPL3)
depends=(
python
python-numpy
python-scipy
python-pandas
python-matplotlib
python-seaborn
python-statsmodels
python-scikit-learn
python-pandas-flavor
python-tabulate
python-mpmath
)
makedepends=(python-build python-installer python-wheel python-setuptools)
checkdepends=(python-pytest)
source=(https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz)
sha256sums=('2aac834128e99a4df8cffd8151c21adc7c42fe493e389c6fc2581b84e436ddd9')
build() {
cd "$_name-$pkgver"
python -m build --wheel --no-isolation
}
check() {
cd $_name-$pkgver
pytest
}
package() {
cd "$_name-$pkgver"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|