-
Notifications
You must be signed in to change notification settings - Fork 2k
Recipe for argon2-cffi #2398
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Recipe for argon2-cffi #2398
Changes from all commits
d5d8944
1f6c5f4
d3a2710
50de293
06720ee
10e6bca
e23be18
bc05d83
8fbb4cd
a396f06
1c2fb73
023dc26
981c01b
ff3f43f
f5146fd
5b37ba7
bc4381b
9e0f0b9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| from pythonforandroid.recipe import CompiledComponentsPythonRecipe | ||
|
|
||
|
|
||
| class Argon2Recipe(CompiledComponentsPythonRecipe): | ||
| version = '20.1.0' | ||
| url = 'git+https://github.com/hynek/argon2-cffi' | ||
| depends = ['setuptools', 'cffi'] | ||
| call_hostpython_via_targetpython = False | ||
| build_cmd = 'build' | ||
|
|
||
| def get_recipe_env(self, arch): | ||
| env = super().get_recipe_env(arch) | ||
| env['ARGON2_CFFI_USE_SSE2'] = '0' | ||
| return env | ||
|
|
||
|
|
||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. flake8 requires an extra blank line here.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. okay
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. it doesn't like the fact that the "blank line" contains whitespace. |
||
| recipe = Argon2Recipe() | ||
Uh oh!
There was an error while loading. Please reload this page.