1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-21 18:25:41 +03:00
aports/community/py3-distributed/APKBUILD
psykose deb62258ec */*: set --skip-build for python installs
this marginally increases install speed by not checking if it needs a rebuild.
also remove --prefix=/usr as it defaults to /usr already.

might break a build or two, will fix later
2023-01-10 04:19:31 +01:00

64 lines
1.3 KiB
Text

# Contributor: Bart Ribbers <bribbers@disroot.org>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=py3-distributed
pkgver=2022.11.1
pkgrel=0
pkgdesc="A library for distributed computation"
url="https://distributed.dask.org/"
arch="noarch"
license="BSD-3-Clause"
depends="python3"
depends="
py3-click
py3-cloudpickle
py3-dask
py3-jinja2
py3-locket
py3-msgpack
py3-psutil
py3-sortedcontainers
py3-tblib
py3-toolz
py3-tornado
py3-urllib3
py3-yaml
py3-zict
"
makedepends="
linux-headers
py3-setuptools
python3-dev
yaml-dev
"
checkdepends="
py3-arrow
py3-h5py
py3-jsonschema
py3-lz4
py3-paramiko
py3-pytest
py3-pytest-asyncio
py3-requests
py3-scipy
"
source="https://pypi.python.org/packages/source/d/distributed/distributed-$pkgver.tar.gz"
options="!check" # Failure with newer pytest than upstream uses
builddir="$srcdir/distributed-$pkgver"
build() {
python3 setup.py build
}
check() {
PYTHONPATH="$PWD/build/lib" pytest \
--ignore distributed/comm/tests/test_comms.py \
--ignore distributed/tests/test_core.py
}
package() {
python3 setup.py install --skip-build --root="$pkgdir"
}
sha512sums="
554f5030284162c487b6cdf448447bd9787aefd654fbcf89eddec800f237204f8aec2772ef7c0dab5b701557e885a05281aae6ab299762ccb6fd3e090eb82baa distributed-2022.11.1.tar.gz
"