We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f4652a commit aadcfc4Copy full SHA for aadcfc4
pythonforandroid/recipes/argon2-cffi/__init__.py
@@ -0,0 +1,17 @@
1
+from pythonforandroid.recipe import CompiledComponentsPythonRecipe
2
+
3
4
+class Argon2Recipe(CompiledComponentsPythonRecipe):
5
+ version = '20.1.0'
6
+ url = 'git+https://github.com/hynek/argon2-cffi'
7
+ depends = ['setuptools', 'cffi']
8
+ call_hostpython_via_targetpython = False
9
+ build_cmd = 'build'
10
11
+ def get_recipe_env(self, arch):
12
+ env = super().get_recipe_env(arch)
13
+ env['ARGON2_CFFI_USE_SSE2'] = '0'
14
+ return env
15
16
17
+recipe = Argon2Recipe()
0 commit comments