1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-24 03:35:38 +03:00
aports/community/py3-sympy/APKBUILD
2025-04-29 16:36:04 +00:00

62 lines
1.5 KiB
Text

# Contributor: Maxim Karasev <mxkrsv@disroot.org>
# Maintainer: Celeste <cielesti@protonmail.com>
maintainer="Celeste <cielesti@protonmail.com>"
pkgname=py3-sympy
pkgver=1.14.0
pkgrel=0
pkgdesc="Computer algebra system written in pure Python"
url="https://www.sympy.org/"
arch="noarch"
license="BSD-3-Clause"
depends="py3-mpmath"
makedepends="
py3-gpep517
py3-setuptools
py3-wheel
"
checkdepends="
py3-hypothesis
py3-pytest-rerunfailures
py3-pytest-timeout
py3-pytest-xdist
"
subpackages="$pkgname-doc $pkgname-pyc"
source="https://github.com/sympy/sympy/archive/sympy-$pkgver/py3-sympy-$pkgver.tar.gz"
builddir="$srcdir/sympy-sympy-$pkgver"
# DO NOT MERGE with tests enabled: they are fine in CI,
# but get stuck and never complete on the builders.
options="!check"
build() {
gpep517 build-wheel \
--wheel-dir .dist \
--output-fd 3 3>&1 >&2
}
check() {
local allow_fail='no'
case "$CARCH" in
riscv64) allow_fail='yes' ;;
esac
python3 -m venv --clear --without-pip --system-site-packages .testenv
.testenv/bin/python3 -m installer .dist/*.whl
timeout 2h .testenv/bin/python3 -m pytest \
-n auto \
--maxprocesses 24 \
--timeout 600 \
--reruns 3 \
|| [ "$allow_fail" = yes ]
}
package() {
python3 -m installer -d "$pkgdir" \
.dist/*.whl
find "$pkgdir" -type d -name "tests" -exec rm -r {} +
}
sha512sums="
97e8204a9f310f1ddb285783a4b3479a006dcfa20b1a58ac1a0fffdf1d9ecde639615117d21bc0c064cafeb624ad3754e0a3f295fab511400f669fcd3bcdddb5 py3-sympy-1.14.0.tar.gz
"