diff mbox series

[meta-python,2/3] python3-py-serializable: add recipe

Message ID 20260505120915.206334-2-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
This Pythonic library provides a framework for serializing/
deserializing Python classes to and from JSON and XML

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

Patch

diff --git a/meta-python/recipes-devtools/python/python3-py-serializable_2.1.0.bb b/meta-python/recipes-devtools/python/python3-py-serializable_2.1.0.bb
new file mode 100644
index 0000000000..8e2a6111d7
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-py-serializable_2.1.0.bb
@@ -0,0 +1,14 @@ 
+SUMMARY = "Library for serializing and deserializing Python Objects to and from JSON and XML."
+HOMEPAGE = "https://github.com/madpah/serializable"
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
+
+SRC_URI[sha256sum] = "9d5db56154a867a9b897c0163b33a793c804c80cee984116d02d49e4578fc103"
+
+inherit pypi python_poetry_core
+
+PYPI_PACKAGE = "py_serializable"
+
+BBCLASSEXTEND = "native nativesdk"
+
+RDEPENDS:${PN} += "python3-defusedxml"