69 lines
2.0 KiB
Bash
69 lines
2.0 KiB
Bash
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
|
|
# Maintainer: David Runge <dvzrv@archlinux.org>
|
|
|
|
_name=pydantic-core
|
|
pkgname=python-pydantic-core
|
|
# WARNING: this package is pinned down to the patch-level version in python-pydantic and should only be updated in lock-step with it
|
|
pkgver=2.23.4
|
|
pkgrel=2
|
|
epoch=1
|
|
pkgdesc="Core validation logic for pydantic written in rust "
|
|
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
|
|
url="https://github.com/pydantic/pydantic-core"
|
|
license=(MIT)
|
|
depends=(
|
|
gcc-libs
|
|
glibc
|
|
python
|
|
python-typing_extensions
|
|
)
|
|
makedepends=(
|
|
python-build
|
|
python-installer
|
|
python-maturin
|
|
)
|
|
checkdepends=(
|
|
python-dirty-equals
|
|
python-hypothesis
|
|
python-pytest
|
|
python-pytest-benchmark
|
|
python-pytest-examples
|
|
python-pytest-mock
|
|
python-pytest-timeout
|
|
)
|
|
options=(!lto)
|
|
source=($pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz)
|
|
sha512sums=('595c50346e6e4522b9b75cbe07cdfacf3c714ea28d1bee1b78d0128517e5337563ca360db9846944518bbec0a279b666db98397a9753f5809ac5f2900dd6e101')
|
|
b2sums=('2ab89e4081edf97a2096e87432418670fe245408fe4c7f6f56fa15a9d1c74cde0d9a8633cc2e6dca4af8cd92ec86fd54b167d194464c62b66d2e915f1e7fed61')
|
|
|
|
prepare() {
|
|
# we don't support version pinning
|
|
sed -e 's/,!=4.7.0//g' -i $_name-$pkgver/pyproject.toml
|
|
}
|
|
|
|
build() {
|
|
cd $_name-$pkgver
|
|
python -m build --wheel --no-isolation
|
|
}
|
|
|
|
check() {
|
|
local pytest_options=(
|
|
-vv
|
|
--ignore tests/test_docstrings.py # we are not interested in linting/ formatting with ruff
|
|
)
|
|
local site_packages=$(python -c "import site; print(site.getsitepackages()[0])")
|
|
|
|
cd $_name-$pkgver
|
|
# install to temporary location, as importlib is used
|
|
python -m installer --destdir=test_dir dist/*.whl
|
|
export PYTHONPATH="$PWD/test_dir/$site_packages:$PYTHONPATH"
|
|
HYPOTHESIS_PROFILE=slow pytest "${pytest_options[@]}"
|
|
}
|
|
|
|
package() {
|
|
cd $_name-$pkgver
|
|
python -m installer --destdir="$pkgdir" dist/*.whl
|
|
install -vDm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
|
|
install -vDm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname/"
|
|
}
|