diff mbox series

[meta-python,RFC,1/2] python3-cucumber-expressions: add recipe

Message ID 20260921120058.55586-1-f_l_k@t-online.de
State Under Review
Headers show
Series [meta-python,RFC,1/2] python3-cucumber-expressions: add recipe | expand

Commit Message

Markus Volk Sept. 21, 2026, noon UTC
cucumber-expressions provides the step-matcher expression parser that
behave requires from 1.4 onwards. Pure Python, no runtime dependencies
beyond the standard library, built with the uv backend that is already
used for python3-cucumber-tag-expressions.

Built for intel-corei7-64.

AI-Generated: Uses Claude Code (Claude Opus 5)
---
 .../python3-cucumber-expressions_20.1.0.bb     | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-cucumber-expressions_20.1.0.bb
diff mbox series

Patch

diff --git a/meta-python/recipes-devtools/python/python3-cucumber-expressions_20.1.0.bb b/meta-python/recipes-devtools/python/python3-cucumber-expressions_20.1.0.bb
new file mode 100644
index 0000000000..ffce52f03b
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-cucumber-expressions_20.1.0.bb
@@ -0,0 +1,18 @@ 
+SUMMARY = "Cucumber Expressions - a simpler alternative to Regular Expressions"
+DESCRIPTION = "Provides the cucumber-expression parser and matcher used by cucumber/behave"
+HOMEPAGE = "https://github.com/cucumber/cucumber-expressions"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=2b2bb1048cefa23c375b8ce5f13313ea"
+
+SRC_URI[sha256sum] = "0d216ec26e36c71b3e5643f2e72c41f9b266ef04eaa0c7e47a6e3b2caf523b1a"
+
+inherit pypi python_uv_build
+
+PYPI_PACKAGE = "cucumber_expressions"
+
+RDEPENDS:${PN} += " \
+    python3-core \
+    python3-numbers \
+"
+
+BBCLASSEXTEND = "native nativesdk"