10 lines
262 B
Python
10 lines
262 B
Python
from pythonforandroid.recipe import PythonRecipe
|
|
|
|
|
|
class PycryptodomeRecipe(PythonRecipe):
|
|
version = '3.6.3'
|
|
url = 'https://github.com/Legrandin/pycryptodome/archive/v{version}.tar.gz'
|
|
depends = ['setuptools', 'cffi']
|
|
|
|
|
|
recipe = PycryptodomeRecipe()
|