File tree 2 files changed +27
-0
lines changed
pythonforandroid/recipes/sqlalchemy
2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change
1
+
2
+ from pythonforandroid .toolchain import CompiledComponentsPythonRecipe
3
+
4
+
5
+ class SQLAlchemyRecipe (CompiledComponentsPythonRecipe ):
6
+ name = 'sqlalchemy'
7
+ version = '1.0.9'
8
+ url = 'https://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-{version}.tar.gz'
9
+
10
+ depends = [('python2' , 'python3' ), 'setuptools' ]
11
+
12
+ patches = ['zipsafe.patch' ]
13
+
14
+
15
+ recipe = SQLAlchemyRecipe ()
Original file line number Diff line number Diff line change
1
+ diff --git a/setup.py b/setup.py
2
+ index 09b524c..1e65772 100644
3
+ --- a/setup.py
4
+ +++ b/setup.py
5
+ @@ -125,6 +125,7 @@ def run_setup(with_cext):
6
+ setup(name="SQLAlchemy",
7
+ version=VERSION,
8
+ description="Database Abstraction Library",
9
+ + zip_safe=False,
10
+ author="Mike Bayer",
11
+ author_email="mike_mp@zzzcomputing.com",
12
+ url="http://www.sqlalchemy.org",
You can’t perform that action at this time.
0 commit comments