packages/lang/python/python3-asgiref/Makefile
Peter Stadler 3efb95f695 python3-asgiref: update to 3.2.5
Signed-off-by: Peter Stadler <peter.stadler@student.uibk.ac.at>
2020-03-11 19:26:52 +01:00

35 lines
1,002 B
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=asgiref
PKG_VERSION:=3.2.5
PKG_RELEASE:=1
PYPI_NAME:=asgiref
PKG_HASH:=c8f49dd3b42edcc51d09dd2eea8a92b3cfc987ff7e6486be734b4d0cbfd5d315
PKG_MAINTAINER:=Peter Stadler <peter.stadler@student.uibk.ac.at>
PKG_LICENSE:=BSD-3-Clause
PKG_LICENSE_FILES:=LICENSE
include ../pypi.mk
include $(INCLUDE_DIR)/package.mk
include ../python3-package.mk
define Package/python3-asgiref
SUBMENU:=Python
SECTION:=lang
CATEGORY:=Languages
TITLE:=Standard for Python asynchronous web apps and servers.
URL:=https://asgi.readthedocs.io/en/latest/
DEPENDS:=+python3-light +python3-logging +python3-asyncio
VARIANT:=python3
endef
define Package/python3-asgiref/description
ASGI is a standard for Python asynchronous web apps and servers to communicate
with each other, and positioned as an asynchronous successor to WSGI.
endef
$(eval $(call Py3Package,python3-asgiref))
$(eval $(call BuildPackage,python3-asgiref))
$(eval $(call BuildPackage,python3-asgiref-src))