blob: e5d5b4876a1a8b4b558c131da10ee4cad94a6f63 (
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
|
# Maintainer: Iyán Méndez Veiga <me (at) iyanmv (dot) com>
pkgname=python-stanio-git
_name=stanio
pkgver=r28.00dd7f4
pkgrel=3
pkgdesc="A package to prepare inputs to Stan and reading its outputs"
arch=('any')
url="https://github.com/WardBrian/stanio"
license=('BSD-3-Clause')
provides=('python-stanio')
conflicts=('python-stanio')
depends=('python-numpy')
makedepends=(
'git'
'python-build'
'python-installer'
'python-wheel'
)
checkdepends=(
'python-pandas'
'python-pytest'
'python-pytest-cov'
)
source=("${_name}::git+https://github.com/WardBrian/${_name}")
b2sums=('SKIP')
pkgver() {
cd "${_name}"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
}
build() {
cd "${_name}"
python -m build --wheel --no-isolation
}
check() {
local _site_packages=$(python -c "import site; print(site.getsitepackages()[0])")
cd "${_name}"
python -m installer --destdir=test_dir dist/*.whl
PYTHONPATH="test_dir/$_site_packages:$PYTHONPATH" pytest -v test
}
package() {
cd "${_name}"
python -m installer --destdir="$pkgdir" dist/*.whl
install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
|