lbry-android/p4a/pythonforandroid/recipes/pyethereum/__init__.py

16 lines
365 B
Python
Raw Normal View History

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