2019-03-30 21:58:45 +01:00
|
|
|
from pythonforandroid.recipe import CompiledComponentsPythonRecipe
|
2017-08-13 03:24:00 +02:00
|
|
|
|
|
|
|
|
|
|
|
class SQLAlchemyRecipe(CompiledComponentsPythonRecipe):
|
|
|
|
name = 'sqlalchemy'
|
|
|
|
version = '1.0.9'
|
|
|
|
url = 'https://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-{version}.tar.gz'
|
2019-03-30 21:58:45 +01:00
|
|
|
|
|
|
|
depends = ['setuptools']
|
|
|
|
|
2017-08-13 03:24:00 +02:00
|
|
|
patches = ['zipsafe.patch']
|
|
|
|
|
|
|
|
|
|
|
|
recipe = SQLAlchemyRecipe()
|