Re: pypi setuptools based recipe fails ModuleNotFoundError: No module named 'pkg_resources' #python
Konrad Weihmann <kweihmann@...>
The issue here is that you are overwriting the DEPENDS after the inherit.
toggle quoted messageShow quoted text
Two ways to solve this problem Either use DEPENDS = "python3-astropy-helpers" PYPI_PACKAGE = "astropy" inherit pypi or PYPI_PACKAGE = "astropy" inherit pypi DEPENDS += "python3-astropy-helpers" python3-setuptools doesn't need to be added at all manually as this is done implicitly by setuptools3 class
On 29.01.21 21:41, ddbabich@... wrote:
I'm attempting to make a simple bitbake recipe for python3-astropy that inherits from pypi and setuptools3. The very simple recipe is attached.
|
|