blob: e0f953ca4e3b13025aa0b72f7c75bfb50f5b6912 [file] [log] [blame]
Andrew Geissler9aee5002022-03-30 16:27:02 +00001SUMMARY = "Python client for Redis key-value store"
2DESCRIPTION = "The Python interface to the Redis key-value store."
3HOMEPAGE = "http://github.com/andymccurdy/redis-py"
4LICENSE = "MIT"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=51d9ad56299ab60ba7be65a621004f27"
6
Patrick Williamsdb4c27e2022-08-05 08:10:29 -05007SRC_URI[sha256sum] = "ddf27071df4adf3821c4f2ca59d67525c3a82e5f268bed97b813cb4fabf87880"
Andrew Geissler9aee5002022-03-30 16:27:02 +00008
9inherit pypi setuptools3
10
11RDEPENDS:${PN} += "\
12 ${PYTHON_PN}-datetime \
13 ${PYTHON_PN}-cryptography \
14 ${PYTHON_PN}-packaging \
Patrick Williamsdb4c27e2022-08-05 08:10:29 -050015 ${PYTHON_PN}-asyncio \
Andrew Geissler9aee5002022-03-30 16:27:02 +000016"