mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 03:05:48 +03:00
33 lines
830 B
Text
33 lines
830 B
Text
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
# Maintainer: Bart Ribbers <bribbers@disroot.org>
|
|
pkgname=py3-partd
|
|
pkgver=1.2.0
|
|
pkgrel=0
|
|
pkgdesc="Concurrent appendable key-value storage"
|
|
url="https://github.com/dask/partd/"
|
|
arch="noarch !mips !mips64 !s390x" # Blocked by py3-pyzmq
|
|
license="BSD-3-Clause"
|
|
depends="
|
|
py3-locket
|
|
py3-numpy
|
|
py3-pandas
|
|
py3-pyzmq
|
|
py3-toolz
|
|
python3
|
|
"
|
|
makedepends="py3-setuptools"
|
|
source="https://pypi.python.org/packages/source/p/partd/partd-$pkgver.tar.gz"
|
|
options="!check" # No tests
|
|
builddir="$srcdir/partd-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
dbcf6a73e23aacd6502f0669abcb8e51547f280b1b7b94baa7ab5637cd838f8427ad1c4e39127fb7f8b164f3a83b66611b2c71667d31fe0137619fb6c457fab9 partd-1.2.0.tar.gz
|
|
"
|