You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.4 KiB

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