# Description: An implementation of JSON Schema validation for Python
# URL: https://pypi.org/project/jsonschema/
# Maintainer: Matt Housh, jaeger at crux dot ninja
# Depends on: python3-jsonschema-specifications python3-pyrsistent

name=python3-jsonschema
version=4.26.0
release=1
source=(https://pypi.python.org/packages/source/j/jsonschema/jsonschema-$version.tar.gz)

build() {
    cd jsonschema-$version
    /usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
    /usr/bin/python3 -m installer --destdir=$PKG dist/*.whl
}

# vim: set ts=4 et:
