mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-08-21 16:29:14 +02:00

Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
35 lines
699 B
BlitzBasic
35 lines
699 B
BlitzBasic
SUMMARY = "Python interface for Remember The Milk API"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=a53cbc7cb75660694e138ba973c148df"
|
|
|
|
PYPI_PACKAGE_EXT = "tar.bz2"
|
|
|
|
SRC_URI[sha256sum] = "b2d701b25ad3f9a1542057f3eb492c5c1d7dbe2b8d1e8f763043dcc14ee1d933"
|
|
|
|
inherit pypi setuptools3
|
|
|
|
PACKAGES =+ "${PN}-tests ${PN}-samples"
|
|
|
|
FILES:${PN}-samples += " \
|
|
${PYTHON_SITEPACKAGES_DIR}/rtm/samples \
|
|
"
|
|
|
|
FILES:${PN}-tests += " \
|
|
${PYTHON_SITEPACKAGES_DIR}/rtm/tests \
|
|
"
|
|
|
|
RDEPENDS:${PN} += "\
|
|
python3-json \
|
|
python3-logging \
|
|
python3-netclient \
|
|
"
|
|
|
|
RDEPENDS:${PN}-samples += " \
|
|
${PN} \
|
|
"
|
|
|
|
RDEPENDS:${PN}-tests += " \
|
|
${PN} \
|
|
python3-unittest \
|
|
"
|