From 6842316e3fec540de9dfe90a4e7aa17e923e3f2d Mon Sep 17 00:00:00 2001 From: kmonson Date: Mon, 15 Feb 2016 18:52:27 -0800 Subject: [PATCH] Add ndg_httpsclient recipe --- pythonforandroid/recipes/ndghttpsclient | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 pythonforandroid/recipes/ndghttpsclient diff --git a/pythonforandroid/recipes/ndghttpsclient b/pythonforandroid/recipes/ndghttpsclient new file mode 100644 index 000000000..bd971fcdc --- /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()