aboutsummaryrefslogtreecommitdiffstats
path: root/community/py3-jsonschema/APKBUILD
blob: 0aa99c2a3e0375c4e03f883026e6a7754d79590a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=py3-jsonschema
pkgver=4.21.1
pkgrel=1
pkgdesc="JSON Schema validation for Python"
url="https://github.com/python-jsonschema/jsonschema"
arch="noarch"
license="MIT"
depends="
	py3-attrs
	py3-jsonschema-specifications
	py3-referencing
	py3-rpds-py
	"
makedepends="
	py3-gpep517
	py3-hatch-fancy-pypi-readme
	py3-hatch-vcs
	py3-hatchling
	py3-installer
	py3-wheel
	"
checkdepends="py3-pytest"
subpackages="$pkgname-pyc"
source="https://files.pythonhosted.org/packages/source/j/jsonschema/jsonschema-$pkgver.tar.gz
	skip-license-test.patch
	"
builddir="$srcdir/jsonschema-$pkgver"
options="!check" # the tests take forever

replaces="py-jsonschema" # Backwards compatibility
provides="py-jsonschema=$pkgver-r$pkgrel" # Backwards compatibility

build() {
	gpep517 build-wheel \
		--wheel-dir .dist \
		--output-fd 3 3>&1 >&2
}

check() {
	python3 -m venv --clear --without-pip --system-site-packages .testenv
	.testenv/bin/python3 -m installer .dist/*.whl
	.testenv/bin/python3 -m pytest
}

package() {
	python3 -m installer -d "$pkgdir" \
		.dist/jsonschema-$pkgver-py3-none-any.whl

	rm -r "$pkgdir"/usr/lib/python*/site-packages/jsonschema/tests

	ln -s jsonschema "$pkgdir"/usr/bin/jsonschema-3
}

sha512sums="
b0744a80d64572307860c9238ff5048e062b7665d9ed97dd390bae0b168ab96497f359ddc4e95f052d8b177161e5b808ee432bd9fe182c1ea39cbad417db9278  jsonschema-4.21.1.tar.gz
4e74925bfa689bb53840f31faed361463e82bb2fd16c86a90de7cbcd0d1d6949c81944bc60e8d2068a6043e1da64b62fd48a062d683e9b96d6bc9b6603b2ccd6  skip-license-test.patch
"