aports/community/py3-ipyparallel/APKBUILD
2023-04-29 07:00:24 +00:00

56 lines
1.4 KiB
Plaintext

# Contributor: Aiden Grossman <agrossman154@yahoo.com>
# Maintainer: Aiden Grossman <agrossman154@yahoo.com>
pkgname=py3-ipyparallel
pkgver=8.6.1
pkgrel=0
pkgdesc="Interactive parallel python computing"
url="https://github.com/ipython/ipyparallel"
arch="noarch"
license="BSD-3-Clause"
depends="
py3-traitlets
py3-pyzmq
py3-decorator
ipython
py3-tornado
py3-jupyter_client
py3-entrypoints
py3-psutil
py3-tqdm
py3-jedi
py3-matplotlib-inline
py3-ipykernel
"
makedepends="py3-gpep517 py3-installer py3-hatchling"
checkdepends="py3-pytest py3-pytest-asyncio"
options="!check" # has a circular dependency with py3-ipykernel
subpackages="$pkgname-pyc"
source="$pkgname-$pkgver.tar.gz::https://github.com/ipython/ipyparallel/archive/refs/tags/$pkgver.tar.gz"
builddir="$srcdir/ipyparallel-$pkgver"
build() {
IPP_DISABLE_JS=1 python3 -m build --wheel --no-isolation --skip-dependency-check
}
build() {
IPP_DISABLE_JS=1 \
gpep517 build-wheel \
--wheel-dir dist \
--output-fd 3 3>&1 >&2
}
check() {
python3 -m venv --clear --without-pip --system-site-packages testenv
testenv/bin/python3 -m installer dist/*.whl
testenv/bin/python3 -m pytest
}
package() {
python3 -m installer -d "$pkgdir" \
dist/*.whl
}
sha512sums="
15d47103c26308cea748721e7276817fca9d1bb0395b37c364fea416e70c23fa3e8116efc60e7a1b89c2315d34d51615a887bbd765f27736da792f582d798ed2 py3-ipyparallel-8.6.1.tar.gz
"