blob: 865accc595d7f28aaf20e25dd0afaec0ef327910 [file] [log] [blame]
Andrew Geissler615f2f12022-07-15 14:00:58 -05001SUMMARY = "Pika is a RabbitMQ (AMQP 0-9-1) client library for Python."
2DESCRIPTION = " \
3Pika is a pure-Python implementation of the AMQP 0-9-1 protocol \
4including RabbitMQ's extensions. \
5"
6SECTION = "devel/python"
7HOMEPAGE = "https://pika.readthedocs.io"
8LICENSE = "BSD-3-Clause"
9LIC_FILES_CHKSUM = "file://LICENSE;md5=678ec81495ba50edf81e84e4f1aa69f3"
10
Andrew Geissler3eeda902023-05-19 10:14:02 -050011SRC_URI[sha256sum] = "b2a327ddddf8570b4965b3576ac77091b850262d34ce8c1d8cb4e4146aa4145f"
Andrew Geissler615f2f12022-07-15 14:00:58 -050012
13inherit pypi python_setuptools_build_meta
14
15PYPI_PACKAGE = "pika"
16
17DEPENDS += " \
Patrick Williams39653562024-03-01 08:54:02 -060018 python3-setuptools-scm-native \
19 python3-toml-native \
Andrew Geissler615f2f12022-07-15 14:00:58 -050020"
21
22RDEPENDS:${PN} += " \
Patrick Williams39653562024-03-01 08:54:02 -060023 python3-logging \
24 python3-tornado \
25 python3-twisted \
Andrew Geissler615f2f12022-07-15 14:00:58 -050026"