11 lines
219 B
Python
11 lines
219 B
Python
from pythonforandroid.recipe import PythonRecipe
|
|
|
|
|
|
class EthashRecipe(PythonRecipe):
|
|
|
|
url = 'https://github.com/ethereum/ethash/archive/master.zip'
|
|
|
|
depends = ['python2', 'setuptools']
|
|
|
|
|
|
recipe = EthashRecipe()
|