Files
packages/lang/python/python-jsonschema/Makefile
Alexandru Ardelean 1b3be237a7 python-jsonschema: bump to 4.26.0
Changelog: https://github.com/python-jsonschema/jsonschema/blob/main/CHANGELOG.rst

Minor release with bug fixes and improved draft 2020-12 support.

Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
2026-04-06 08:31:58 +03:00

44 lines
1.1 KiB
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=python-jsonschema
PKG_VERSION:=4.26.0
PKG_RELEASE:=1
PYPI_NAME:=jsonschema
PKG_HASH:=0c26707e2efad8aa1bfc5b7ce170f3fccc2e4918ff85989ba9ffa9facb2be326
PKG_MAINTAINER:=Javier Marcet <javier@marcet.info>
PKG_LICENSE:=MIT
PKG_LICENSE_FILES:=COPYING
PKG_BUILD_DEPENDS:=python-hatchling/host python-hatch-vcs/host python-hatch-fancy-pypi-readme/host
include ../pypi.mk
include $(INCLUDE_DIR)/package.mk
include ../python3-package.mk
define Package/python3-jsonschema
SECTION:=lang
CATEGORY:=Languages
SUBMENU:=Python
TITLE:=An implementation of JSON Schema validation
URL:=https://github.com/python-jsonschema/jsonschema
DEPENDS:= \
+python3-light \
+python3-decimal \
+python3-urllib \
+python3-uuid \
+python3-attrs \
+python3-jsonschema-specifications \
+python3-referencing \
+python3-rpds-py
endef
define Package/python3-jsonschema/description
jsonschema is an implementation of JSON Schema validation for Python.
endef
$(eval $(call Py3Package,python3-jsonschema))
$(eval $(call BuildPackage,python3-jsonschema))
$(eval $(call BuildPackage,python3-jsonschema-src))