diff --git a/lang/python/python-schema/Makefile b/lang/python/python-schema/Makefile index d62a515ca..fd1bb5860 100644 --- a/lang/python/python-schema/Makefile +++ b/lang/python/python-schema/Makefile @@ -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čí 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))