mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-24 00:01:07 -09:00
https://github.com/python-jsonschema/jsonschema/blob/v4.25.1/CHANGELOG.rst Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
31 lines
1.0 KiB
Makefile
31 lines
1.0 KiB
Makefile
################################################################################
|
|
#
|
|
# python-jsonschema
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_JSONSCHEMA_VERSION = 4.25.1
|
|
PYTHON_JSONSCHEMA_SOURCE = jsonschema-$(PYTHON_JSONSCHEMA_VERSION).tar.gz
|
|
PYTHON_JSONSCHEMA_SITE = https://files.pythonhosted.org/packages/74/69/f7185de793a29082a9f3c7728268ffb31cb5095131a9c139a74078e27336
|
|
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))
|