blob: 6b77dd51490dedf04cf4295b4b67d53a0142d5fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# SPDX-License-Identifier: GPL-2.0-only
include $(TOPDIR)/rules.mk
PKG_NAME:=python-starlette
PKG_VERSION:=1.2.1
PKG_RELEASE:=1
PYPI_NAME:=starlette
PKG_HASH:=9b9b5ebb992e67d6093741e63c2f59e4f6fff986f81163c087867bd7b924b3f6
PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
PKG_LICENSE:=BSD-3-Clause
PKG_LICENSE_FILES:=LICENSE.md
HOST_BUILD_DEPENDS:= \
python-anyio/host \
python-setuptools/host
PKG_BUILD_DEPENDS:=python-setuptools/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))
|