lbry-android-sdk/p4a/pythonforandroid/recipes/ndghttpsclient

10 lines
350 B
Text
Raw Permalink Normal View History

from pythonforandroid.recipe import PythonRecipe
2017-08-13 03:24:00 +02:00
class NdgHttpsClientRecipe(PythonRecipe):
2022-12-02 21:15:34 +01:00
version = '0.5.1'
2017-08-13 03:24:00 +02:00
url = 'https://pypi.python.org/packages/source/n/ndg-httpsclient/ndg_httpsclient-{version}.tar.gz'
2022-12-02 21:15:34 +01:00
depends = ['python3', 'pyopenssl', 'cryptography']
2017-08-13 03:24:00 +02:00
call_hostpython_via_targetpython = False
recipe = NdgHttpsClientRecipe()