lbry-android-sdk/p4a/pythonforandroid/recipes/pyopenssl/__init__.py
Akinwale Ariwodola 744cfaebc2 Initial commit
2017-08-13 02:24:00 +01:00

14 lines
365 B
Python

from pythonforandroid.toolchain import PythonRecipe
class PyOpenSSLRecipe(PythonRecipe):
version = '0.14'
url = 'https://pypi.python.org/packages/source/p/pyOpenSSL/pyOpenSSL-{version}.tar.gz'
depends = ['openssl', 'python2', 'setuptools']
site_packages_name = 'OpenSSL'
call_hostpython_via_targetpython = False
recipe = PyOpenSSLRecipe()