blob: 2c4b68a343e5c8692078b031a8dea17dc43976b0 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#
2# Copyright (C) 2019-2021 CZ.NIC, z. s. p. o. (https://www.nic.cz/)
3#
4# This is free software, licensed under the GNU General Public License v2.
5# See /LICENSE for more information.
6#
7
8include $(TOPDIR)/rules.mk
9
10PKG_NAME:=python-aiohttp
11PKG_VERSION:=3.9.3
12PKG_RELEASE:=1
13
14PYPI_NAME:=aiohttp
15PKG_HASH:=90842933e5d1ff760fae6caca4b2b3edba53ba8f4b71e95dacf2818a2aca06f7
16
17PKG_MAINTAINER:=Josef Schlehofer <pepe.schlehofer@gmail.com>
18PKG_LICENSE:=Apache-2.0
19PKG_LICENSE_FILES:=LICENSE.txt
20PKG_CPE_ID:=cpe:/a:aiohttp:aiohttp
21
22include ../pypi.mk
23include $(INCLUDE_DIR)/package.mk
24include ../python3-package.mk
25
26define Package/python3-aiohttp
27 SECTION:=lang
28 CATEGORY:=Languages
29 SUBMENU:=Python
30 TITLE:=Async http client/server framework (asyncio)
31 URL:=https://github.com/aio-libs/aiohttp
32 DEPENDS:= \
33 +python3 \
34 +python3-aiosignal \
35 +python3-async-timeout \
36 +python3-attrs \
37 +python3-charset-normalizer \
38 +python3-frozenlist \
39 +python3-multidict \
40 +python3-yarl
41endef
42
43define Package/python3-aiohttp/description
44 Asynchronous HTTP client/server framework for asyncio and Python3.
45endef
46
47$(eval $(call Py3Package,python3-aiohttp))
48$(eval $(call BuildPackage,python3-aiohttp))
49$(eval $(call BuildPackage,python3-aiohttp-src))