blob: 4547758d99785cd3637b7b5b6c5ed262c62edd5e [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001include $(TOPDIR)/rules.mk
2
3PKG_NAME:=python-asgiref
4PKG_VERSION:=3.7.2
5PKG_RELEASE:=1
6
7PYPI_NAME:=asgiref
8PKG_HASH:=9e0ce3aa93a819ba5b45120216b23878cf6e8525eb3848653452b4192b92afed
9
10PKG_MAINTAINER:=Peter Stadler <peter.stadler@student.uibk.ac.at>
11PKG_LICENSE:=BSD-3-Clause
12PKG_LICENSE_FILES:=LICENSE
13
14include ../pypi.mk
15include $(INCLUDE_DIR)/package.mk
16include ../python3-package.mk
17
18define Package/python3-asgiref
19 SUBMENU:=Python
20 SECTION:=lang
21 CATEGORY:=Languages
22 TITLE:=ASGI specs, helper code, and adapters
23 URL:=https://github.com/django/asgiref/
24 DEPENDS:=+python3-light +python3-logging +python3-asyncio
25endef
26
27define Package/python3-asgiref/description
28 ASGI is a standard for Python asynchronous web apps and servers to communicate
29 with each other, and positioned as an asynchronous successor to WSGI.
30endef
31
32$(eval $(call Py3Package,python3-asgiref))
33$(eval $(call BuildPackage,python3-asgiref))
34$(eval $(call BuildPackage,python3-asgiref-src))