34 lines
1.1 KiB
Bash
34 lines
1.1 KiB
Bash
# Template file for 'python3-jsonschema'
|
|
pkgname=python3-jsonschema
|
|
version=4.14.0
|
|
revision=1
|
|
wrksrc="jsonschema-${version}"
|
|
build_style=python3-pep517
|
|
hostmakedepends="hatchling hatch-vcs"
|
|
depends="python3-attrs python3-pyrsistent"
|
|
checkdepends="${depends} python3-pytest"
|
|
short_desc="Implementation of JSON Schema for Python3"
|
|
maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
|
|
license="MIT"
|
|
homepage="https://github.com/Julian/jsonschema"
|
|
changelog="https://raw.githubusercontent.com/Julian/jsonschema/master/CHANGELOG.rst"
|
|
distfiles="${PYPI_SITE}/j/jsonschema/jsonschema-${version}.tar.gz"
|
|
checksum=15062f4cc6f591400cd528d2c355f2cfa6a57e44c820dc783aee5e23d36a831f
|
|
|
|
do_check() {
|
|
rm -rf *.dist-info tmp # remove artifacts from previous unsuccessful check run
|
|
pip install --no-deps --target tmp ./jsonschema-$version-py3-none-any.whl
|
|
rm tmp/jsonschema/tests -rf
|
|
mv tmp/*.dist-info .
|
|
PYTHONPATH=. pytest --deselect jsonschema/tests/test_jsonschema_test_suite.py::test_suite_bug
|
|
rm -rf *.dist-info tmp
|
|
}
|
|
|
|
pre_build() {
|
|
export SETUPTOOLS_SCM_PRETEND_VERSION="${version}"
|
|
}
|
|
|
|
post_install() {
|
|
vlicense COPYING LICENSE
|
|
}
|