mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-19 16:40:46 -09:00
When migrating to setuptools with pep517 support we need to add host-python-cython which is a pep517 build dependency for python-sqlalchemy. Signed-off-by: James Hilliard <james.hilliard1@gmail.com> Tested-By: Flávio Tapajós <flavio.tapajos@newtesc.com.br> Signed-off-by: Flávio Tapajós <flavio.tapajos@newtesc.com.br> Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
18 lines
714 B
Makefile
18 lines
714 B
Makefile
################################################################################
|
|
#
|
|
# python-sqlalchemy
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_SQLALCHEMY_VERSION = 2.0.25
|
|
PYTHON_SQLALCHEMY_SOURCE = SQLAlchemy-$(PYTHON_SQLALCHEMY_VERSION).tar.gz
|
|
PYTHON_SQLALCHEMY_SITE = https://files.pythonhosted.org/packages/7b/bb/85bd8e211f54983e927c7cd9b2ad66773fbef507957156fc72e481a62681
|
|
PYTHON_SQLALCHEMY_SETUP_TYPE = setuptools
|
|
PYTHON_SQLALCHEMY_LICENSE = MIT
|
|
PYTHON_SQLALCHEMY_LICENSE_FILES = LICENSE
|
|
PYTHON_SQLALCHEMY_CPE_ID_VENDOR = sqlalchemy
|
|
PYTHON_SQLALCHEMY_CPE_ID_PRODUCT = sqlalchemy
|
|
PYTHON_SQLALCHEMY_DEPENDENCIES = host-python-cython
|
|
|
|
$(eval $(python-package))
|