mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
52 lines
1.2 KiB
Plaintext
52 lines
1.2 KiB
Plaintext
# Contributor: Aiden Grossman <agrossman154@yahoo.com>
|
|
# Maintainer:
|
|
pkgname=py3-ipyparallel
|
|
pkgver=8.7.0
|
|
pkgrel=2
|
|
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 \
|
|
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="
|
|
57db92c45e9f481ef6364a95fdef2caaea20bc427a886c8bf0edce5a5ce1001e6e4b754136c3b8b6ecbd1c05a4239cd6000f881061dd7136b33b9293d48c15d6 py3-ipyparallel-8.7.0.tar.gz
|
|
"
|