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

The atomicwrites module depends on the tempfiles module, but it is not in the RDEPENDs, so add it: root@qemux86-64:~# python3 Python 3.8.2 (default, Feb 25 2020, 10:39:28) [GCC 9.3.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import atomicwrites Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/lib/python3.8/site-packages/atomicwrites/__init__.py", line 5, in <module> import tempfile ModuleNotFoundError: No module named 'tempfile' Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
12 lines
420 B
BlitzBasic
12 lines
420 B
BlitzBasic
DESCRIPTION = "Powerful Python library for atomic file writes"
|
|
HOMEPAGE = "https://github.com/untitaker/python-atomicwrites"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=91cc36cfafeefb7863673bcfcb1d4da4"
|
|
|
|
SRC_URI[md5sum] = "ce11f780a4ce0fce8a55d64494a88178"
|
|
SRC_URI[sha256sum] = "75a9445bac02d8d058d5e1fe689654ba5a6556a1dfd8ce6ec55a0ed79866cfa6"
|
|
|
|
inherit pypi setuptools3
|
|
|
|
RDEPENDS_${PN} = "${PYTHON_PN}-misc"
|