python-schema: Update to 0.7.5

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
This commit is contained in:
Jeffery To 2023-08-25 01:07:05 +08:00 committed by Tianling Shen
parent 53dadf2c50
commit 8c7709b911
1 changed files with 10 additions and 4 deletions

View File

@ -5,12 +5,15 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=python-schema
PKG_VERSION:=0.7.2
PKG_VERSION:=0.7.5
PKG_RELEASE:=1
PKG_MAINTAINER:=Karel Kočí <cynerd@email.cz>
PYPI_NAME:=schema
PKG_HASH:=b536f2375b49fdf56f36279addae98bd86a8afbd58b3c32ce363c464bed5fc1c
PKG_HASH:=f06717112c61895cabc4707752b88716e8420a8819d71404501e114f91043197
PKG_LICENSE:=MIT
PKG_LICENSE_FILES:=LICENSE-MIT
include ../pypi.mk
include $(INCLUDE_DIR)/package.mk
@ -21,12 +24,15 @@ define Package/python3-schema
CATEGORY:=Languages
SUBMENU:=Python
URL:=https://github.com/keleshev/schema
TITLE:=python3-schema
TITLE:=Simple data validation library
DEPENDS:=+python3-light +python3-contextlib2
endef
define Package/python3-schema/description
Schema validation just got Pythonic
schema is a library for validating Python data structures, such as those
obtained from config-files, forms, external services or command-line
parsing, converted from JSON/YAML (or something else) to Python
data-types.
endef
$(eval $(call Py3Package,python3-schema))