mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-16 21:32:22 +01:00
this is only a partial rebuild, including stuff that i built on my personal machine with python 3.12.2; might fail with 3.12.3
53 lines
1.3 KiB
Plaintext
53 lines
1.3 KiB
Plaintext
# Contributor: Iztok Fister, Jr. <iztok@iztok-jr-fister.eu>
|
|
# Maintainer: Iztok Fister, Jr. <iztok@iztok-jr-fister.eu>
|
|
pkgname=py3-hiplot
|
|
pkgver=0.1.33
|
|
pkgrel=1
|
|
pkgdesc="HiPlot makes understanding high dimensional data easy"
|
|
url="https://github.com/facebookresearch/hiplot"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="
|
|
python3
|
|
ipython
|
|
py3-beautifulsoup4
|
|
py3-flask
|
|
py3-flask-compress
|
|
py3-pandas
|
|
"
|
|
makedepends="py3-gpep517 py3-setuptools py3-wheel"
|
|
checkdepends="py3-pytest-xdist py3-pytest-cov py3-ipykernel py3-optuna"
|
|
subpackages="$pkgname-pyc"
|
|
source="https://github.com/facebookresearch/hiplot/archive/$pkgver/hiplot-$pkgver.tar.gz"
|
|
builddir="$srcdir/hiplot-$pkgver"
|
|
|
|
build() {
|
|
gpep517 build-wheel \
|
|
--wheel-dir .dist \
|
|
--output-fd 3 3>&1 >&2
|
|
}
|
|
|
|
check() {
|
|
|
|
# assertion errors or missing dependencies
|
|
local _skipped_tests="
|
|
test_to_filename
|
|
and not test_to_html
|
|
and not test_demos_streamlit
|
|
and not test_demos_ipython
|
|
"
|
|
|
|
python3 -m venv --clear --without-pip --system-site-packages .testenv
|
|
.testenv/bin/python3 -m installer .dist/*.whl
|
|
.testenv/bin/python3 -m pytest -n auto -k "not $(echo $_skipped_tests)"
|
|
}
|
|
|
|
package() {
|
|
python3 -m installer -d "$pkgdir" \
|
|
.dist/*.whl
|
|
}
|
|
|
|
sha512sums="
|
|
a21d564333e52797956cf17a0eb12827272718e2f98e9a793867f7b5a556f8f3edd38a724968b99894a299e05f90b350a1b65ca14061508f21395165081ec60a hiplot-0.1.33.tar.gz
|
|
"
|