Skip to content

Commit 5b6d3ad

Browse files
committed
add sqlalchemy recipe
1 parent eba92ab commit 5b6d3ad

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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()
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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",

0 commit comments

Comments
 (0)