This commit is contained in:
TriForceX
2019-09-25 20:51:37 -03:00
commit 6203ff3e7c
11215 changed files with 428258 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
config BR2_PACKAGE_PYTHON_SQLALCHEMY
bool "python-sqlalchemy"
help
SQLAlchemy is the Python SQL toolkit and Object Relational
Mapper that gives application developers the full power and
flexibility of SQL.
It 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.
http://www.sqlalchemy.org

View File

@@ -0,0 +1,4 @@
# md5 from https://pypi.python.org/pypi/SQLAlchemy/json, sha256 locally computed
md5 f1902c174981e363a7fbb9f6c8d932c6 SQLAlchemy-1.3.3.tar.gz
sha256 91c54ca8345008fceaec987e10924bf07dcab36c442925357e5a467b36a38319 SQLAlchemy-1.3.3.tar.gz
sha256 5536859eda1f40aa1e96d94d0c027ccd5eb6822f869fb76bca655f4b58742a6a LICENSE

View File

@@ -0,0 +1,14 @@
################################################################################
#
# python-sqlalchemy
#
################################################################################
PYTHON_SQLALCHEMY_VERSION = 1.3.3
PYTHON_SQLALCHEMY_SOURCE = SQLAlchemy-$(PYTHON_SQLALCHEMY_VERSION).tar.gz
PYTHON_SQLALCHEMY_SITE = https://files.pythonhosted.org/packages/2b/b2/e6f5c5efc68942edefaa924e8fbea0b32375baa434a511cbf6bb17769cf6
PYTHON_SQLALCHEMY_SETUP_TYPE = setuptools
PYTHON_SQLALCHEMY_LICENSE = MIT
PYTHON_SQLALCHEMY_LICENSE_FILES = LICENSE
$(eval $(python-package))