python3-jsonschema: add a new package
Signed-off-by: Javier Marcet <javier@marcet.info>
This commit is contained in:
parent
1a5292d17c
commit
4dc815d0d1
1 changed files with 34 additions and 0 deletions
34
lang/python/python-jsonschema/Makefile
Normal file
34
lang/python/python-jsonschema/Makefile
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
|
PKG_NAME:=python-jsonschema
|
||||||
|
PKG_VERSION:=3.2.0
|
||||||
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
|
PYPI_NAME:=jsonschema
|
||||||
|
PKG_HASH:=c8a85b28d377cc7737e46e2d9f2b4f44ee3c0e1deac6bf46ddefc7187d30797a
|
||||||
|
|
||||||
|
PKG_MAINTAINER:=Javier Marcet <javier@marcet.info>
|
||||||
|
PKG_LICENSE:=MIT
|
||||||
|
PKG_LICENSE_FILES:=COPYING
|
||||||
|
|
||||||
|
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-six +python3-pyrsistent
|
||||||
|
VARIANT:=python3
|
||||||
|
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))
|
Loading…
Reference in a new issue