Merge pull request #11353 from kvuorine/fwknop-fixes
[feed/packages.git] / lang / python / python-sqlalchemy / Makefile
1 #
2 # Copyright (C) 2019-2020 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
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=python-sqlalchemy
11 PKG_VERSION:=1.3.18
12 PKG_RELEASE:=1
13
14 PYPI_NAME:=SQLAlchemy
15 PKG_HASH:=da2fb75f64792c1fc64c82313a00c728a7c301efe6a60b7a9fe35b16b4368ce7
16
17 PKG_MAINTAINER:=Josef Schlehofer <josef.schlehofer@nic.cz>
18 PKG_LICENSE:=MIT
19 PKG_LICENSE_FILES:=LICENSE
20 PKG_CPE_ID:=cpe:/a:sqlalchemy:sqlalchemy
21
22 include ../pypi.mk
23 include $(INCLUDE_DIR)/package.mk
24 include ../python3-package.mk
25
26 define Package/python3-sqlalchemy
27 SECTION:=lang
28 CATEGORY:=Languages
29 SUBMENU:=Python
30 TITLE:=Database Abstraction Library
31 URL:=https://www.sqlalchemy.org
32 DEPENDS:= \
33 +python3-light \
34 +python3-urllib \
35 +python3-decimal \
36 +python3-logging
37 endef
38
39 define Package/python3-sqlalchemy/description
40 SQLAlchemy is the Python SQL toolkit and Object Relational Mapper
41 that gives application developers the full power and flexibility of SQL.
42 SQLAlchemy provides a full suite of well known enterprise-level persistence patterns,
43 designed for efficient and high-performing database access,
44 adapted into a simple and Pythonic domain language.
45 endef
46
47 $(eval $(call Py3Package,python3-sqlalchemy))
48 $(eval $(call BuildPackage,python3-sqlalchemy))
49 $(eval $(call BuildPackage,python3-sqlalchemy-src))