15 lines
383 B
Python
15 lines
383 B
Python
|
from pythonforandroid.recipe import CompiledComponentsPythonRecipe
|
||
|
|
||
|
|
||
|
class CythonRecipe(CompiledComponentsPythonRecipe):
|
||
|
|
||
|
version = '0.29.28'
|
||
|
url = 'https://github.com/cython/cython/archive/{version}.tar.gz'
|
||
|
site_packages_name = 'cython'
|
||
|
depends = ['setuptools']
|
||
|
call_hostpython_via_targetpython = False
|
||
|
install_in_hostpython = True
|
||
|
|
||
|
|
||
|
recipe = CythonRecipe()
|