packages/lang/python/python-starlette/Makefile

50 lines
1.2 KiB
Makefile

# SPDX-License-Identifier: GPL-2.0-only
include $(TOPDIR)/rules.mk
PKG_NAME:=python-starlette
PKG_VERSION:=1.6.0
PKG_RELEASE:=1
PYPI_NAME:=starlette
PKG_HASH:=d4e3ac5e546444960c710297a3c9fc3f7ebae1b7e963f3d36173b49da535be9b
PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
PKG_LICENSE:=BSD-3-Clause
PKG_LICENSE_FILES:=LICENSE.md
HOST_BUILD_DEPENDS:= \
python-anyio/host \
python-hatchling/host
PKG_BUILD_DEPENDS:=python-hatchling/host
include ../pypi.mk
include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/host-build.mk
include ../python3-package.mk
include ../python3-host-build.mk
define Package/python3-starlette
SECTION:=lang
CATEGORY:=Languages
SUBMENU:=Python
TITLE:=Starlette
URL:=https://github.com/agronholm/starlette
DEPENDS:= \
+python3-asyncio \
+python3-anyio \
+python3-light \
+python3-urllib \
+python3-uuid
endef
define Package/python3-starlette/description
Starlette is a lightweight ASGI framework/toolkit, which is ideal for
building async web services in Python.
endef
$(eval $(call Py3Package,python3-starlette))
$(eval $(call BuildPackage,python3-starlette))
$(eval $(call BuildPackage,python3-starlette-src))
$(eval $(call HostBuild))