12 lines
243 B
Python
12 lines
243 B
Python
|
from pythonforandroid.recipe import PythonRecipe
|
||
|
|
||
|
|
||
|
class Pysha3Recipe(PythonRecipe):
|
||
|
version = '1.0.2'
|
||
|
url = 'https://github.com/tiran/pysha3/archive/{version}.tar.gz'
|
||
|
|
||
|
depends = ['python2', 'setuptools']
|
||
|
|
||
|
|
||
|
recipe = Pysha3Recipe()
|