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

13 lines
357 B
Python

from pythonforandroid.recipe import CompiledComponentsPythonRecipe
class RegexRecipe(CompiledComponentsPythonRecipe):
name = 'regex'
version = '2019.06.08'
url = 'https://pypi.python.org/packages/source/r/regex/regex-{version}.tar.gz' # noqa
depends = ['setuptools']
call_hostpython_via_targetpython = False
recipe = RegexRecipe()