mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
31 lines
1,023 B
Text
31 lines
1,023 B
Text
# Contributor: Oleg Titov <oleg.titov@gmail.com>
|
|
# Maintainer: Oleg Titov <oleg.titov@gmail.com>
|
|
pkgname=py3-srsly
|
|
pkgver=2.0.1
|
|
pkgrel=1
|
|
pkgdesc="Modern high-performance serialization utilities for Python"
|
|
url="https://github.com/explosion/srsly"
|
|
arch="all !mips !mips64" # blocked by py3-numpy
|
|
license="MIT"
|
|
depends="python3 py3-numpy py3-tz"
|
|
makedepends="python3-dev py3-setuptools cython py3-wheel"
|
|
checkdepends="py3-pytest py3-pytest-timeout py3-mock"
|
|
subpackages="$pkgname-doc"
|
|
source="srsly-$pkgver.tar.gz::https://github.com/explosion/srsly/archive/v$pkgver.tar.gz"
|
|
builddir="$srcdir/srsly-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build_ext --inplace
|
|
}
|
|
|
|
check() {
|
|
PYTHONPATH="$(echo $PWD/build/lib.*)" pytest-3
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
|
|
install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
|
|
}
|
|
|
|
sha512sums="25557e5bd2869b4fcd3a801af6e19461eaf5fab920a252ce24229b637fcdec96ce706eb6b92158e9537c9cf9890b2ac5635c5a4f08641d30f8801fb18cff5128 srsly-2.0.1.tar.gz"
|