lbry-android-sdk/p4a/pythonforandroid/recipes/cython/__init__.py
2022-12-02 15:15:34 -05:00

14 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()