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