lbry-android-sdk/p4a/pythonforandroid/recipes/x3dh/__init__.py

19 lines
428 B
Python
Raw Normal View History

from pythonforandroid.recipe import PythonRecipe
class X3DHRecipe(PythonRecipe):
name = 'x3dh'
version = '0.5.3'
url = 'https://pypi.python.org/packages/source/X/X3DH/X3DH-{version}.tar.gz'
site_packages_name = 'x3dh'
depends = [
'setuptools',
'cryptography',
'xeddsa',
]
patches = ['requires_fix.patch']
call_hostpython_via_targetpython = False
recipe = X3DHRecipe()