mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-21 13:41:20 +02:00
41 lines
960 B
Plaintext
41 lines
960 B
Plaintext
# Contributor: Aiden Grossman <agrossman154@yahoo.com>
|
|
# Maintainer: Aiden Grossman <agrossman154@yahoo.com>
|
|
pkgname=py3-ipyparallel
|
|
pkgver=8.2.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
|
|
"
|
|
checkdepends="py3-pytest"
|
|
options="!check" # has a circular dependency with py3-ipykernel
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/ipython/ipyparallel/archive/refs/tags/$pkgver.tar.gz"
|
|
builddir="$srcdir/ipyparallel-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
pytest
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
7ae6d05503d61f983a0467d4dc77710de8ef9c00c5b160e2f2a467e7825d01bd637ae1effee44a5121d3f361ead8e95b61155aa76732076abbfc906dc3878490 py3-ipyparallel-8.2.1.tar.gz
|
|
"
|