This updates all Python packages that download their source from PyPi to use pypi.mk. This will allow future improvements/changes to pypi.mk to affect all relevant packages. This also makes it easier for future Python packages to start using pypi.mk, when it's clear how it is used in existing packages. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
50 lines
1.4 KiB
Makefile
50 lines
1.4 KiB
Makefile
#
|
|
# Copyright (C) 2019 CZ.NIC, z. s. p. o. (https://www.nic.cz/)
|
|
#
|
|
# 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
|
|
PKG_VERSION:=1.3.7
|
|
PKG_RELEASE:=1
|
|
|
|
PYPI_NAME:=SQLAlchemy
|
|
PKG_HASH:=0459bf0ea6478f3e904de074d65769a11d74cdc34438ab3159250c96d089aef0
|
|
|
|
PKG_MAINTAINER:=Josef Schlehofer <josef.schlehofer@nic.cz>
|
|
PKG_LICENSE:=MIT
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
PKG_CPE_ID:=cpe:/a:sqlalchemy:sqlalchemy
|
|
|
|
include ../pypi.mk
|
|
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
|
|
DEPENDS:= \
|
|
+python3-light \
|
|
+python3-urllib \
|
|
+python3-decimal \
|
|
+python3-logging
|
|
VARIANT:=python3
|
|
endef
|
|
|
|
define Package/python3-sqlalchemy/description
|
|
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.
|
|
endef
|
|
|
|
$(eval $(call Py3Package,python3-sqlalchemy))
|
|
$(eval $(call BuildPackage,python3-sqlalchemy))
|
|
$(eval $(call BuildPackage,python3-sqlalchemy-src))
|