mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-09-08 18:30:16 +00:00
The current inherited "python:web3" mapping does not match the web3.py
identities used by NVD and CVE List V5, so its source-aligned CVE is
missed.
Use "ethereum:web3.py" for the CNA affected-data identity and
"apeworx:web3.py" for the NVD dictionary CPE and NVD configuration
identity.
Backport note: Scarthgap has web3.py 6.17.0 rather than 7.16.0;
CVE-2026-40072 applies to this release and is reported as unpatched.
Signed-off-by: Devansh Patel <devanshp@cisco.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
(cherry picked from commit 19ecb40f50)
Signed-off-by: Devansh Patel <devanshp@cisco.com>
Signed-off-by: Anuj Mittal <anuj.mittal@oss.qualcomm.com>
30 lines
797 B
BlitzBasic
30 lines
797 B
BlitzBasic
SUMMARY = "A Python library for interacting with Ethereum."
|
|
HOMEPAGE = "https://github.com/ethereum/web3.py"
|
|
SECTION = "devel/python"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=373fede350846fdffd23648fba504635"
|
|
|
|
SRC_URI += "file://CVE-2026-40072.patch"
|
|
SRC_URI[sha256sum] = "1b535272a40da3d8d2b120856edb53b84b0c08bcc8fe1a5bbd5f816fd72f4ec6"
|
|
|
|
CVE_PRODUCT = "ethereum:web3.py apeworx:web3.py"
|
|
|
|
inherit pypi setuptools3
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-aiohttp \
|
|
python3-eth-abi \
|
|
python3-eth-account \
|
|
python3-eth-hash \
|
|
python3-eth-typing \
|
|
python3-eth-utils \
|
|
python3-hexbytes \
|
|
python3-jsonschema \
|
|
python3-protobuf \
|
|
python3-pydantic \
|
|
python3-requests \
|
|
python3-typing-extensions \
|
|
python3-websockets \
|
|
python3-pyunormalize \
|
|
"
|