16 lines
365 B
Python
16 lines
365 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 = [
|
||
|
'python2', 'setuptools', 'pycryptodome', 'pysha3', 'ethash', 'scrypt'
|
||
|
]
|
||
|
|
||
|
call_hostpython_via_targetpython = False
|
||
|
|
||
|
|
||
|
recipe = PyethereumRecipe()
|