blob: c69c37f2441e1addb946de25fc8de333587f6c1b [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#
2# Copyright (C) 2019-2021 CZ.NIC, z. s. p. o. (https://www.nic.cz/)
3#
4# This is free software, licensed under the GNU General Public License v2.
5# See /LICENSE for more information.
6#
7
8include $(TOPDIR)/rules.mk
9
10PKG_NAME:=python-sqlalchemy
11PKG_VERSION:=2.0.23
12PKG_RELEASE:=1
13
14PYPI_NAME:=SQLAlchemy
15PKG_HASH:=c1bda93cbbe4aa2aa0aa8655c5aeda505cd219ff3e8da91d1d329e143e4aff69
16
17PKG_MAINTAINER:=Josef Schlehofer <pepe.schlehofer@gmail.com>
18PKG_LICENSE:=MIT
19PKG_LICENSE_FILES:=LICENSE
20PKG_CPE_ID:=cpe:/a:sqlalchemy:sqlalchemy
21
22PKG_BUILD_DEPENDS:=python-cython/host
23
24include ../pypi.mk
25include $(INCLUDE_DIR)/package.mk
26include ../python3-package.mk
27
28define Package/python3-sqlalchemy
29 SECTION:=lang
30 CATEGORY:=Languages
31 SUBMENU:=Python
32 TITLE:=Database Abstraction Library
33 URL:=https://www.sqlalchemy.org
34 DEPENDS:=+python3 +python3-typing-extensions
35endef
36
37define Package/python3-sqlalchemy/description
38SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that
39gives application developers the full power and flexibility of SQL.
40SQLAlchemy provides a full suite of well known enterprise-level
41persistence patterns, designed for efficient and high-performing
42database access, adapted into a simple and Pythonic domain language.
43endef
44
45$(eval $(call Py3Package,python3-sqlalchemy))
46$(eval $(call BuildPackage,python3-sqlalchemy))
47$(eval $(call BuildPackage,python3-sqlalchemy-src))