2017-08-13 03:24:00 +02:00
|
|
|
from pythonforandroid.recipe import PythonRecipe
|
|
|
|
|
|
|
|
|
|
|
|
class PycryptodomeRecipe(PythonRecipe):
|
2019-03-30 21:58:45 +01:00
|
|
|
version = '3.6.3'
|
|
|
|
url = 'https://github.com/Legrandin/pycryptodome/archive/v{version}.tar.gz'
|
|
|
|
depends = ['setuptools', 'cffi']
|
2017-08-13 03:24:00 +02:00
|
|
|
|
|
|
|
|
|
|
|
recipe = PycryptodomeRecipe()
|