diff mbox series

[1/3] python_uv_build: add PEP-517 backend class

Message ID 20260530224301.1456167-1-tim.orling@konsulko.com
State New
Headers show
Series [1/3] python_uv_build: add PEP-517 backend class | expand

Commit Message

Tim Orling May 30, 2026, 10:42 p.m. UTC
From: Tim Orling <tim.orling@konsulko.com>

uv_build is a slimmed down version of uv containing only the build
backend. See https://pypi.org/project/uv/ and https://docs.astral.sh/uv/
for the main project package and documentation.

python3-cryptography-vectors uses the 'uv_build' backend.

Signed-off-by: Tim Orling <tim.orling@konsulko.com>
---
 meta/classes-recipe/python_uv_build.bbclass | 9 +++++++++
 1 file changed, 9 insertions(+)
 create mode 100644 meta/classes-recipe/python_uv_build.bbclass
diff mbox series

Patch

diff --git a/meta/classes-recipe/python_uv_build.bbclass b/meta/classes-recipe/python_uv_build.bbclass
new file mode 100644
index 0000000000..9c8acdf4fd
--- /dev/null
+++ b/meta/classes-recipe/python_uv_build.bbclass
@@ -0,0 +1,9 @@ 
+#
+# Copyright OpenEmbedded Contributors
+#
+# SPDX-License-Identifier: MIT
+#
+
+inherit python_pep517
+
+DEPENDS += "python3-uv-build-native"