2019-07-06 02:25:31 +08:00
|
|
|
#
|
2021-08-13 09:08:22 +08:00
|
|
|
# Copyright (C) 2019-2021 CZ.NIC, z. s. p. o. (https://www.nic.cz/)
|
2019-07-06 02:25:31 +08:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=python-sqlalchemy
|
2023-08-25 01:20:57 +08:00
|
|
|
PKG_VERSION:=2.0.20
|
2020-07-08 22:01:26 +08:00
|
|
|
PKG_RELEASE:=1
|
2019-07-06 02:25:31 +08:00
|
|
|
|
2019-10-21 03:03:12 +08:00
|
|
|
PYPI_NAME:=SQLAlchemy
|
2023-08-25 01:20:57 +08:00
|
|
|
PKG_HASH:=ca8a5ff2aa7f3ade6c498aaafce25b1eaeabe4e42b73e25519183e4566a16fc6
|
2019-07-06 02:25:31 +08:00
|
|
|
|
|
|
|
PKG_MAINTAINER:=Josef Schlehofer <josef.schlehofer@nic.cz>
|
|
|
|
PKG_LICENSE:=MIT
|
|
|
|
PKG_LICENSE_FILES:=LICENSE
|
2019-09-19 22:07:09 +08:00
|
|
|
PKG_CPE_ID:=cpe:/a:sqlalchemy:sqlalchemy
|
2019-07-06 02:25:31 +08:00
|
|
|
|
2023-08-25 01:20:57 +08:00
|
|
|
PKG_BUILD_DEPENDS:=python-cython/host
|
|
|
|
|
2019-10-21 03:03:12 +08:00
|
|
|
include ../pypi.mk
|
2019-07-06 02:25:31 +08:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
include ../python3-package.mk
|
|
|
|
|
|
|
|
define Package/python3-sqlalchemy
|
|
|
|
SECTION:=lang
|
|
|
|
CATEGORY:=Languages
|
|
|
|
SUBMENU:=Python
|
|
|
|
TITLE:=Database Abstraction Library
|
|
|
|
URL:=https://www.sqlalchemy.org
|
2023-08-25 01:20:57 +08:00
|
|
|
DEPENDS:=+python3 +python3-typing-extensions
|
2019-07-06 02:25:31 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/python3-sqlalchemy/description
|
2023-08-25 01:20:57 +08:00
|
|
|
SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that
|
|
|
|
gives application developers the full power and flexibility of SQL.
|
|
|
|
SQLAlchemy provides a full suite of well known enterprise-level
|
|
|
|
persistence patterns, designed for efficient and high-performing
|
|
|
|
database access, adapted into a simple and Pythonic domain language.
|
2019-07-06 02:25:31 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call Py3Package,python3-sqlalchemy))
|
|
|
|
$(eval $(call BuildPackage,python3-sqlalchemy))
|
|
|
|
$(eval $(call BuildPackage,python3-sqlalchemy-src))
|