Skip to content
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

Merged
merged 18 commits into from
Jan 5, 2021
Merged
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions pythonforandroid/recipes/argon2-cffi/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
from pythonforandroid.recipe import CompiledComponentsPythonRecipe

class Argon2Recipe(CompiledComponentsPythonRecipe):
version = '20.1.0'
url = 'https://github.com/hynek/argon2-cffi/archive/master.zip'
depends = ['setuptools', 'cffi']
call_hostpython_via_targetpython = False

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

flake8 requires an extra blank line here.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

okay

Copy link
Contributor

Choose a reason for hiding this comment

The 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()