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

15 lines
354 B
Python

from pythonforandroid.recipe import PythonRecipe
class PyethereumRecipe(PythonRecipe):
version = 'v1.6.1'
url = 'https://github.com/ethereum/pyethereum/archive/{version}.tar.gz'
depends = [
'setuptools', 'pycryptodome', 'pysha3', 'ethash', 'scrypt'
]
call_hostpython_via_targetpython = False
recipe = PyethereumRecipe()