blob: 7ebc4eac7a28cc06b8b3bee27b98bd62e95c1573 [file] [log] [blame]
Brad Bishop34ae6002019-04-08 15:21:03 -04001SUMMARY = "Socket.IO server"
2HOMEPAGE = "https://github.com/miguelgrinberg/python-socketio/"
3SECTION = "devel/python"
4
5LICENSE = "MIT"
6LIC_FILES_CHKSUM = "file://LICENSE;md5=42d0a9e728978f0eeb759c3be91536b8"
7
8inherit pypi
9
10PYPI_PACKAGE = "python-socketio"
11
Brad Bishop26bdd442019-08-16 17:08:17 -040012SRC_URI[md5sum] = "86cd47dddea1785ce7a6c72f55c93fe7"
13SRC_URI[sha256sum] = "506b2cf7a520b40ea0b3f25e1272eff8de134dce6f471c1f6bc0de8c90fe8c57"
14
15PACKAGECONFIG ?= "asyncio_client client"
16PACKAGECONFIG[asyncio_client] = ",,,python3-aiohttp python3-websockets"
17PACKAGECONFIG[client] = ",,,python3-requests python3-websocket-client"
Brad Bishop34ae6002019-04-08 15:21:03 -040018
19RDEPENDS_${PN} += "\
20 ${PYTHON_PN}-engineio \
Brad Bishop26bdd442019-08-16 17:08:17 -040021 ${PYTHON_PN}-logging \
22 ${PYTHON_PN}-math \
23 ${PYTHON_PN}-pickle \
24 ${PYTHON_PN}-json \
25 ${PYTHON_PN}-threading \
26 ${PYTHON_PN}-six \
27 ${PYTHON_PN}-attrs \
Brad Bishop34ae6002019-04-08 15:21:03 -040028 "