mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
package/pkg-python.mk: add poetry setup type
As we have many python packages using the poetry(poetry-core) build system we should add a setup type for it so that we don't have to manually specify the host-python-poetry-core dependency. Signed-off-by: James Hilliard <james.hilliard1@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
committed by
Thomas Petazzoni
parent
f27fc081e8
commit
0205f4c2b8
@@ -419,6 +419,8 @@ class BuildrootPackage():
|
||||
self.setup_metadata['method'] = 'flit'
|
||||
elif build_backend == 'hatchling.build':
|
||||
self.setup_metadata['method'] = 'hatch'
|
||||
elif build_backend == 'poetry.core.masonry.api':
|
||||
self.setup_metadata['method'] = 'poetry'
|
||||
elif build_backend == 'setuptools.build_meta':
|
||||
self.setup_metadata['method'] = 'setuptools'
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user