diff mbox series

[meta-python,3/5] python3-devtools: Add recipe

Message ID 20260728114533.1775490-3-leon.anavi@konsulko.com
State Accepted
Headers show
Series [meta-python,1/5] python3-ruff: Add recipe | expand

Commit Message

Leon Anavi July 28, 2026, 11:45 a.m. UTC
Add a recipe for devtools, Python's missing debug print command and
more. Release 0.12.2:

- install debug into builtins via DebugProxy

From release 0.12.1:

- Fix docs publish.

From release 0.12.0:

- build docs on CI
- Update usage to reflect the recent addition of the pytest plugin
- Support dataclasses with slots

This work was sponsored by GOVCERT.LU.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../python/python3-devtools_0.12.2.bb          | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-devtools_0.12.2.bb
diff mbox series

Patch

diff --git a/meta-python/recipes-devtools/python/python3-devtools_0.12.2.bb b/meta-python/recipes-devtools/python/python3-devtools_0.12.2.bb
new file mode 100644
index 0000000000..25ea7cd11c
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-devtools_0.12.2.bb
@@ -0,0 +1,18 @@ 
+SUMMARY = "Python's missing debug print command, and more."
+DESCRIPTION = "Python's missing debug print command, and more."
+HOMEPAGE = "https://github.com/samuelcolvin/python-devtools"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=3c69d58fa5f4ff0b4244368d39546751"
+
+SRC_URI[sha256sum] = "efceab184cb35e3a11fa8e602cc4fadacaa2e859e920fc6f87bf130b69885507"
+
+inherit pypi python_hatchling ptest-python-pytest
+
+RDEPENDS:${PN}-ptest += "\
+    python3-core \
+    python3-executing \
+    python3-numpy \
+    python3-asttokens \
+"
+
+BBCLASSEXTEND = "native nativesdk"