diff mbox series

[03/13] classes/python_pdm: add PEP517 build class for PDM

Message ID 20250730160343.4053614-3-ross.burton@arm.com
State New
Headers show
Series [01/13] classes/python_pep517: centralise shared inherits | expand

Commit Message

Ross Burton July 30, 2025, 4:03 p.m. UTC
PDM[1] is yet another build/package manager for Python that is fairly
common now, so add a class for it.

Signed-off-by: Ross Burton <ross.burton@arm.com>

[1] https://pdm-project.org/
---
 meta/classes-recipe/python_pdm.bbclass | 9 +++++++++
 1 file changed, 9 insertions(+)
 create mode 100644 meta/classes-recipe/python_pdm.bbclass
diff mbox series

Patch

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