2019-03-30 21:58:45 +01:00
|
|
|
from pythonforandroid.recipe import PythonRecipe
|
2017-08-13 03:24:00 +02:00
|
|
|
|
|
|
|
|
|
|
|
class SimpleCryptRecipe(PythonRecipe):
|
|
|
|
version = '4.1.7'
|
|
|
|
url = 'https://pypi.python.org/packages/source/s/simple-crypt/simple-crypt-{version}.tar.gz'
|
2019-03-30 21:58:45 +01:00
|
|
|
depends = ['pycrypto']
|
2017-08-13 03:24:00 +02:00
|
|
|
site_packages_name = 'simplecrypt'
|
|
|
|
|
2019-03-30 21:58:45 +01:00
|
|
|
|
2017-08-13 03:24:00 +02:00
|
|
|
recipe = SimpleCryptRecipe()
|