mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 20:59:41 +02:00

Currently boto3 can be built into an image but it won't work without additional dependencies. First: botocore is needed at run-time, second: there are other packages available in meta-python that need adding. Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
18 lines
654 B
BlitzBasic
18 lines
654 B
BlitzBasic
HOMEPAGE = "https://github.com/boto/boto"
|
|
SUMMARY = "Amazon Web Services API"
|
|
DESCRIPTION = "\
|
|
Boto3 is the Amazon Web Services (AWS) Software Development Kit (SDK) for Python, \
|
|
which allows Python developers to write software that makes use of services like \
|
|
Amazon S3 and Amazon EC2. \
|
|
"
|
|
SECTION = "devel/python"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=2ee41112a44fe7014dce33e26468ba93"
|
|
|
|
SRC_URI[md5sum] = "fb8b77d4ac10a971570419dd3613196e"
|
|
SRC_URI[sha256sum] = "4856c8cb4150b900cc7dccbdf16f542fb8c12e97b17639979e58760847f7cf35"
|
|
|
|
inherit pypi setuptools3
|
|
|
|
RDEPENDS_${PN} += "python3-botocore python3-urllib3 python3-unixadmin"
|