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

python3-pyrsistent requires python3-numbers, so add it to RDEPENDS: |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 pyrsistent |Traceback (most recent call last): |File "<stdin>", line 1, in <module> |File "/usr/lib64/python3.8/site-packages/pyrsistent/_init_.py", line 3, in <module> |from pyrsistent._pmap import pmap, m, PMap |File "/usr/lib64/python3.8/site-packages/pyrsistent/_pmap.py", line 4, in <module> |from pyrsistent._pvector import pvector |File "/usr/lib64/python3.8/site-packages/pyrsistent/_pvector.py", line 3, in <module> |from numbers import Integral |ModuleNotFoundError: No module named 'numbers' Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
17 lines
492 B
BlitzBasic
17 lines
492 B
BlitzBasic
SUMMARY = "Persistent/Immutable/Functional data structures for Python"
|
|
HOMEPAGE = "https://github.com/tobgu/pyrsistent"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENCE.mit;md5=ca574f2891cf528b3e7a2ee570337e7c"
|
|
|
|
SRC_URI[md5sum] = "da9486d00ef5b213f40d5cf3c5bca82d"
|
|
SRC_URI[sha256sum] = "cdc7b5e3ed77bed61270a47d35434a30617b9becdf2478af76ad2c6ade307280"
|
|
|
|
inherit pypi setuptools3
|
|
|
|
RDEPENDS_${PN} += " \
|
|
${PYTHON_PN}-numbers \
|
|
${PYTHON_PN}-six \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|