What's Changed: - Add package_url for changelog by @fhightower - Only validate unevaluated properties/items on applicable types by @EpicWink - Mark library as typed (PEP-561) by @ssbarnea - Add v4.5.1 to changelog by @sirosen - Modernize the packaging setup via PEP 621 and Hatch. by @Julian New Contributors: - @fhightower made their first contribution - @EpicWink made their first contribution Signed-off-by: Javier Marcet <javier@marcet.info>
36 lines
1,001 B
Makefile
36 lines
1,001 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=python-jsonschema
|
|
PKG_VERSION:=4.6.0
|
|
PKG_RELEASE:=1
|
|
|
|
PYPI_NAME:=jsonschema
|
|
PKG_HASH:=9d6397ba4a6c0bf0300736057f649e3e12ecbc07d3e81a0dacb72de4e9801957
|
|
|
|
PKG_MAINTAINER:=Javier Marcet <javier@marcet.info>
|
|
PKG_LICENSE:=MIT
|
|
PKG_LICENSE_FILES:=COPYING
|
|
|
|
HOST_PYTHON3_PACKAGE_BUILD_DEPENDS:=setuptools-scm
|
|
|
|
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/Julian/jsonschema
|
|
DEPENDS:=+python3-light +python3-attrs +python3-urllib \
|
|
+python3-six +python3-pyrsistent +python3-setuptools
|
|
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))
|