mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

python3-iso8601 relies on the decimal module from the standard library, but it is not in iso8601's RDEPENDS: |root@qemux86-64:~# python3 |Python 3.8.2 (default, Apr 27 2020, 08:51:00) |[GCC 9.3.0] on linux |Type "help", "copyright", "credits" or "license" for more information. |>>> import iso8601 |Traceback (most recent call last): |File "<stdin>", line 1, in <module> |File "/usr/lib64/python3.8/site-packages/iso8601/_init_.py", line 1, in <module> |from .iso8601 import * |File "/usr/lib64/python3.8/site-packages/iso8601/iso8601.py", line 12, in <module> |from decimal import Decimal |ModuleNotFoundError: No module named 'decimal' Add it to RDEPENDS to fix the import error. Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
15 lines
443 B
PHP
15 lines
443 B
PHP
SUMMARY = "Simple module to parse ISO 8601 dates"
|
|
HOMEPAGE = "http://pyiso8601.readthedocs.org/"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=b05625f2336fa024e8d57e65c6595844"
|
|
|
|
SRC_URI[md5sum] = "4de940f691c5ea759fb254384c8ddcf6"
|
|
SRC_URI[sha256sum] = "49c4b20e1f38aa5cf109ddcd39647ac419f928512c869dc01d5c7098eddede82"
|
|
|
|
RDEPENDS_${PN} += "\
|
|
${PYTHON_PN}-datetime \
|
|
${PYTHON_PN}-numbers \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|