package/python-argon2-cffi: new package

The secure Argon2 password hashing algorithm.

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
James Hilliard 2020-02-13 00:42:45 -07:00 committed by Thomas Petazzoni
parent c7e9b4d8d2
commit fab123422e
5 changed files with 31 additions and 0 deletions

View file

@ -1189,6 +1189,7 @@ F: package/python-aiojobs/
F: package/python-aiorwlock/
F: package/python-aiosignal/
F: package/python-aiozipkin/
F: package/python-argon2-cffi/
F: package/python-async-lru/
F: package/python-async-timeout/
F: package/python-brotli/

View file

@ -868,6 +868,7 @@ menu "External python modules"
source "package/python-aiozipkin/Config.in"
source "package/python-alsaaudio/Config.in"
source "package/python-argh/Config.in"
source "package/python-argon2-cffi/Config.in"
source "package/python-arrow/Config.in"
source "package/python-asgiref/Config.in"
source "package/python-asn1crypto/Config.in"

View file

@ -0,0 +1,9 @@
config BR2_PACKAGE_PYTHON_ARGON2_CFFI
bool "python-argon2-cffi"
select BR2_PACKAGE_PYTHON_CFFI # runtime
select BR2_PACKAGE_PYTHON_ENUM34 if BR2_PACKAGE_PYTHON # runtime
select BR2_PACKAGE_PYTHON_SIX # runtime
help
The secure Argon2 password hashing algorithm.
https://argon2-cffi.readthedocs.io/

View file

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/argon2_cffi/json
md5 3fb9154af6f7a113028a7a8bc7da715d argon2-cffi-19.2.0.tar.gz
sha256 ffaa623eea77b497ffbdd1a51e941b33d3bf552c60f14dbee274c4070677bda3 argon2-cffi-19.2.0.tar.gz
# Locally computed sha256 checksums
sha256 bf659a28b49240602f56bbdf490cbe2ec509b15b98f99d7b19a52c740e327863 LICENSE

View file

@ -0,0 +1,15 @@
################################################################################
#
# python-argon2-cffi
#
################################################################################
PYTHON_ARGON2_CFFI_VERSION = 19.2.0
PYTHON_ARGON2_CFFI_SOURCE = argon2-cffi-$(PYTHON_ARGON2_CFFI_VERSION).tar.gz
PYTHON_ARGON2_CFFI_SITE = https://files.pythonhosted.org/packages/e4/96/f1bf2369f29794971f836b8eff5e3bdb653043f1b61d104eae21b1de3ccb
PYTHON_ARGON2_CFFI_SETUP_TYPE = setuptools
PYTHON_ARGON2_CFFI_LICENSE = MIT
PYTHON_ARGON2_CFFI_LICENSE_FILES = LICENSE
PYTHON_ARGON2_CFFI_DEPENDENCIES = host-python-cffi
$(eval $(python-package))