mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
32 lines
1.2 KiB
Text
32 lines
1.2 KiB
Text
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
# Maintainer: Bart Ribbers <bribbers@disroot.org>
|
|
pkgname=py3-distributed
|
|
pkgver=2.18.0
|
|
pkgrel=0
|
|
pkgdesc="A library for distributed computation"
|
|
url="https://distributed.dask.org/"
|
|
arch="noarch !mips !mips64 !s390x" # Blocked by py3-dask
|
|
license="BSD-3-Clause"
|
|
depends="python3"
|
|
depends="py3-dask py3-yaml py3-tornado py3-tblib py3-click py3-cloudpickle py3-msgpack py3-psutil py3-sortedcontainers py3-zict"
|
|
makedepends="py3-setuptools python3-dev linux-headers yaml-dev"
|
|
checkdepends="py3-pytest py3-pytest-asyncio py3-requests py3-paramiko py3-arrow py3-h5py py3-scipy py3-lz4 py3-jsonschema"
|
|
source="https://pypi.python.org/packages/source/d/distributed/distributed-$pkgver.tar.gz"
|
|
# Tests require ipv6 stack which might not always be available yet
|
|
# Net required for tests
|
|
options="!check"
|
|
builddir="$srcdir/distributed-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
PYTHONPATH="$PWD/build/lib" pytest
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="dd5dc33ebbfa171724a454a26e21e8a9e34b44a56e4cff01d028fe48ef69ffc5173dee791beb6f6e7e13d0403dfa2a49dc256dba74ebe084710ef7cc25750308 distributed-2.18.0.tar.gz"
|