diff mbox series

[meta-python,3/3] python3-cyclonedx-python-lib: add recipe

Message ID 20260505120915.206334-3-samuli.piippo@qt.io
State Under Review
Headers show
Series [meta-python,1/3] python3-packageurl-python: add recipe | expand

Commit Message

Samuli Piippo May 5, 2026, 12:09 p.m. UTC
OWASP CycloneDX is a full-stack Bill of Materials (BOM) standard
that provides advanced supply chain capabilities for cyber risk
reduction.

This Python package provides data models, validators and more,
to help you create/render/read CycloneDX documents.

Signed-off-by: Samuli Piippo <samuli.piippo@qt.io>
---
 .../python3-cyclonedx-python-lib_11.7.0.bb    | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-cyclonedx-python-lib_11.7.0.bb
diff mbox series

Patch

diff --git a/meta-python/recipes-devtools/python/python3-cyclonedx-python-lib_11.7.0.bb b/meta-python/recipes-devtools/python/python3-cyclonedx-python-lib_11.7.0.bb
new file mode 100644
index 0000000000..56c108c6fe
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-cyclonedx-python-lib_11.7.0.bb
@@ -0,0 +1,19 @@ 
+SUMMARY = "Python library for CycloneDX"
+HOMEPAGE = "https://github.com/CycloneDX/cyclonedx-python-lib/"
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
+
+SRC_URI[sha256sum] = "fb1bc3dedfa31208444dbd743007f478ab6984010a184e5bd466bffd969e936e"
+
+inherit pypi python_poetry_core
+
+PYPI_PACKAGE = "cyclonedx_python_lib"
+
+BBCLASSEXTEND = "native nativesdk"
+
+RDEPENDS:${PN} = "\
+    python3-py-serializable \
+    python3-sortedcontainers \
+    python3-jsonschema \
+    python3-referencing \
+"