@@ -744,6 +744,7 @@ RECIPE_MAINTAINER:pn-python3-sphinxcontrib-serializinghtml = "Tim Orling <tim.or
RECIPE_MAINTAINER:pn-python3-sphinxcontrib-svg2pdfconverter = "Antonin Godard <antonin.godard@bootlin.com>"
RECIPE_MAINTAINER:pn-python3-subunit = "Trevor Gamblin <tgamblin@baylibre.com>"
RECIPE_MAINTAINER:pn-python3-testtools = "Trevor Gamblin <tgamblin@baylibre.com>"
+RECIPE_MAINTAINER:pn-python3-tomlkit = "Ross Burton <ross.burton@arm.com>"
RECIPE_MAINTAINER:pn-python3-trove-classifiers = "Trevor Gamblin <tgamblin@baylibre.com>"
RECIPE_MAINTAINER:pn-python3-typing-extensions = "Tim Orling <tim.orling@konsulko.com>"
RECIPE_MAINTAINER:pn-python3-typogrify = "Trevor Gamblin <tgamblin@baylibre.com>"
@@ -91,6 +91,7 @@ PTESTS_FAST = "\
python3-pyyaml \
python3-rpds-py \
python3-six \
+ python3-tomlkit \
python3-trove-classifiers \
python3-vcs-versioning \
python3-uritools \
new file mode 100644
@@ -0,0 +1,21 @@
+SUMMARY = "Style preserving TOML library"
+HOMEPAGE = "https://pypi.org/project/tomlkit/"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=31aac0dbc1babd278d5386dadb7f8e82"
+
+SRC_URI[sha256sum] = "e25bbf38843005246210a12982776f27f99cb9be67160e14434d0c0d21ee1e97"
+
+inherit pypi python_poetry_core ptest-python-pytest
+
+RDEPENDS:${PN} += " \
+ python3-datetime \
+ python3-profile \
+ python3-stringold \
+"
+
+RDEPENDS:${PN}-ptest += " \
+ python3-poetry-core \
+ python3-pyyaml \
+"
+
+BBCLASSEXTEND = "native nativesdk"
Add a recipe for tomlkit, which is a new dependency needed by hatchling. Signed-off-by: Ross Burton <ross.burton@arm.com> --- meta/conf/distro/include/maintainers.inc | 1 + .../distro/include/ptest-packagelists.inc | 1 + .../python/python3-tomlkit_0.15.1.bb | 21 +++++++++++++++++++ 3 files changed, 23 insertions(+) create mode 100644 meta/recipes-devtools/python/python3-tomlkit_0.15.1.bb