2017-08-13 03:24:00 +02:00
|
|
|
from pythonforandroid.recipe import PythonRecipe
|
|
|
|
|
|
|
|
|
|
|
|
class PyethereumRecipe(PythonRecipe):
|
|
|
|
version = 'v1.6.1'
|
|
|
|
url = 'https://github.com/ethereum/pyethereum/archive/{version}.tar.gz'
|
|
|
|
|
|
|
|
depends = [
|
2019-03-30 21:58:45 +01:00
|
|
|
'setuptools', 'pycryptodome', 'pysha3', 'ethash', 'scrypt'
|
2017-08-13 03:24:00 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
call_hostpython_via_targetpython = False
|
|
|
|
|
|
|
|
|
|
|
|
recipe = PyethereumRecipe()
|