diff --git a/pythonforandroid/recipes/ndghttpsclient b/pythonforandroid/recipes/ndghttpsclient new file mode 100644 index 0000000000..bd971fcdc0 --- /dev/null +++ b/pythonforandroid/recipes/ndghttpsclient @@ -0,0 +1,9 @@ +from pythonforandroid.toolchain import PythonRecipe + +class NdgHttpsClientRecipe(PythonRecipe): + version = '0.4.0' + url = 'https://pypi.python.org/packages/source/n/ndg-httpsclient/ndg_httpsclient-{version}.tar.gz' + depends = ['python2', 'pyopenssl', 'cryptography'] + call_hostpython_via_targetpython = False + +recipe = NdgHttpsClientRecipe()