mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-02 05:33:57 -09:00
See the release notes here: https://github.com/python-jsonschema/jsonschema/blob/main/CHANGELOG.rst/\#v4260 Signed-off-by: Manuel Diener <manuel.diener@oss.othermo.de> Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu>
31 lines
1.0 KiB
Makefile
31 lines
1.0 KiB
Makefile
################################################################################
|
|
#
|
|
# python-jsonschema
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_JSONSCHEMA_VERSION = 4.26.0
|
|
PYTHON_JSONSCHEMA_SOURCE = jsonschema-$(PYTHON_JSONSCHEMA_VERSION).tar.gz
|
|
PYTHON_JSONSCHEMA_SITE = https://files.pythonhosted.org/packages/b3/fc/e067678238fa451312d4c62bf6e6cf5ec56375422aee02f9cb5f909b3047
|
|
PYTHON_JSONSCHEMA_SETUP_TYPE = hatch
|
|
PYTHON_JSONSCHEMA_LICENSE = MIT
|
|
PYTHON_JSONSCHEMA_LICENSE_FILES = COPYING json/LICENSE
|
|
PYTHON_JSONSCHEMA_DEPENDENCIES = \
|
|
host-python-hatch-fancy-pypi-readme \
|
|
host-python-hatch-vcs
|
|
|
|
HOST_PYTHON_JSONSCHEMA_DEPENDENCIES = \
|
|
host-python-hatch-fancy-pypi-readme \
|
|
host-python-hatch-vcs
|
|
|
|
# This is a runtime dependency, but we don't have the concept of
|
|
# runtime dependencies for host packages.
|
|
HOST_PYTHON_JSONSCHEMA_DEPENDENCIES += \
|
|
host-python-attrs \
|
|
host-python-jsonschema-specifications \
|
|
host-python-referencing \
|
|
host-python-rpds-py
|
|
|
|
$(eval $(python-package))
|
|
$(eval $(host-python-package))
|