diff options
author | Jackie Huang <jackie.huang@windriver.com> | 2019-09-29 16:28:28 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2019-09-30 16:54:51 -0700 |
commit | 7e5be41e9e916e8a76c8d62b606d7716175923f7 (patch) | |
tree | e38aa90cdf699789b9c87428fd3234679a8cd8ff /meta-python/recipes-devtools/python/python-pika.inc | |
parent | 8188608dec575e204b5ac296dca7be4d96703446 (diff) | |
download | meta-openembedded-7e5be41e9e916e8a76c8d62b606d7716175923f7.tar.gz |
python-pika: add recipes for python2 and python3
Pika is a pure-Python implementation of the AMQP 0-9-1
protocol including RabbitMQ’s extensions.
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python-pika.inc')
-rw-r--r-- | meta-python/recipes-devtools/python/python-pika.inc | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python-pika.inc b/meta-python/recipes-devtools/python/python-pika.inc new file mode 100644 index 000000000..10be5bb62 --- /dev/null +++ b/meta-python/recipes-devtools/python/python-pika.inc | |||
@@ -0,0 +1,22 @@ | |||
1 | SUMMARY = "Pika is a RabbitMQ (AMQP 0-9-1) client library for Python." | ||
2 | DESCRIPTION = " \ | ||
3 | Pika is a pure-Python implementation of the AMQP 0-9-1 protocol \ | ||
4 | including RabbitMQ’s extensions. \ | ||
5 | " | ||
6 | SECTION = "devel/python" | ||
7 | HOMEPAGE = "https://pika.readthedocs.io" | ||
8 | LICENSE = "BSD" | ||
9 | LIC_FILES_CHKSUM = "file://LICENSE;md5=535836bf0a5de515a7bfee026075701d" | ||
10 | |||
11 | SRC_URI[md5sum] = "6002400cdd33bf85ec8680ece72910d4" | ||
12 | SRC_URI[sha256sum] = "9fa76ba4b65034b878b2b8de90ff8660a59d925b087c5bb88f8fdbb4b64a1dbf" | ||
13 | |||
14 | inherit pypi | ||
15 | |||
16 | PYPI_PACKAGE = "pika" | ||
17 | |||
18 | RDEPENDS_${PN} += " \ | ||
19 | ${PYTHON_PN}-logging \ | ||
20 | ${PYTHON_PN}-tornado \ | ||
21 | ${PYTHON_PN}-twisted \ | ||
22 | " | ||