lbry-android/p4a/pythonforandroid/recipes/pyethereum/__init__.py
Akinwale Ariwodola 744cfaebc2 Initial commit
2017-08-13 02:24:00 +01:00

15 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()