blob: d04279ed974dc1063ceec27729be8f5a5018ad1b [file] [log] [blame]
Andrew Geissler595f6302022-01-24 19:11:47 +00001SUMMARY = "Async http client/server framework"
2DESCRIPTION = "Asynchronous HTTP client/server framework for asyncio and Python"
3HOMEPAGE = "https://github.com/aio-libs/aiohttp"
4LICENSE = "Apache-2.0"
Andrew Geissler87f5cff2022-09-30 13:13:31 -05005LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=748073912af33aa59430d3702aa32d41"
Andrew Geissler595f6302022-01-24 19:11:47 +00006
Patrick Williams2a254922023-08-11 09:48:11 -05007SRC_URI[sha256sum] = "b9552ec52cc147dbf1944ac7ac98af7602e51ea2dcd076ed194ca3c0d1c7d0bc"
Andrew Geissler595f6302022-01-24 19:11:47 +00008
9PYPI_PACKAGE = "aiohttp"
Andrew Geissler9aee5002022-03-30 16:27:02 +000010inherit python_setuptools_build_meta pypi
11
Andrew Geissler595f6302022-01-24 19:11:47 +000012RDEPENDS:${PN} = "\
13 ${PYTHON_PN}-async-timeout \
14 ${PYTHON_PN}-attrs \
15 ${PYTHON_PN}-chardet \
16 ${PYTHON_PN}-html \
17 ${PYTHON_PN}-idna-ssl \
18 ${PYTHON_PN}-json \
19 ${PYTHON_PN}-misc \
20 ${PYTHON_PN}-multidict \
21 ${PYTHON_PN}-netserver \
22 ${PYTHON_PN}-typing-extensions \
23 ${PYTHON_PN}-yarl \
24 ${PYTHON_PN}-cchardet \
25 ${PYTHON_PN}-charset-normalizer \
26 ${PYTHON_PN}-aiosignal \
27"