diff options
author | Yegor Yefremov <yegorslists@googlemail.com> | 2017-09-07 12:38:01 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-09-09 23:11:37 +0200 |
commit | bbcc673b3ae33d07b7f07e377d8d4664266f5242 (patch) | |
tree | 58ead3d88377048d23e1f6ad58dc30f8d3a5654c /package/python-cryptography | |
parent | 670a5ebe4698f99534bbcf209431f62af0ef3d51 (diff) | |
download | buildroot-bbcc673b3ae33d07b7f07e377d8d4664266f5242.tar.gz buildroot-bbcc673b3ae33d07b7f07e377d8d4664266f5242.zip |
python-cryptography: add missing dependency on BR2_PACKAGE_PYTHON_HASHLIB
HASHLIB is only needed for Python 2.
While at this sort dependencies alphabetically.
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/python-cryptography')
-rw-r--r-- | package/python-cryptography/Config.in | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/package/python-cryptography/Config.in b/package/python-cryptography/Config.in index 9827cf82b6..14f950d4d8 100644 --- a/package/python-cryptography/Config.in +++ b/package/python-cryptography/Config.in @@ -3,16 +3,17 @@ config BR2_PACKAGE_PYTHON_CRYPTOGRAPHY depends on BR2_INSTALL_LIBSTDCPP # python-pyasn select BR2_PACKAGE_OPENSSL select BR2_PACKAGE_PYTHON_CFFI # runtime + select BR2_PACKAGE_PYTHON_ENUM34 if BR2_PACKAGE_PYTHON # runtime + select BR2_PACKAGE_PYTHON_HASHLIB if BR2_PACKAGE_PYTHON # runtime select BR2_PACKAGE_PYTHON_IDNA # runtime + select BR2_PACKAGE_PYTHON_IPADDRESS if BR2_PACKAGE_PYTHON # runtime select BR2_PACKAGE_PYTHON_PYASN # runtime - select BR2_PACKAGE_PYTHON_SIX # runtime - select BR2_PACKAGE_PYTHON_ENUM34 if BR2_PACKAGE_PYTHON # runtime - select BR2_PACKAGE_PYTHON_SETUPTOOLS # runtime select BR2_PACKAGE_PYTHON_PYEXPAT if BR2_PACKAGE_PYTHON # runtime select BR2_PACKAGE_PYTHON3_PYEXPAT if BR2_PACKAGE_PYTHON3 # runtime + select BR2_PACKAGE_PYTHON_SETUPTOOLS # runtime + select BR2_PACKAGE_PYTHON_SIX # runtime select BR2_PACKAGE_PYTHON_SSL if BR2_PACKAGE_PYTHON # runtime select BR2_PACKAGE_PYTHON3_SSL if BR2_PACKAGE_PYTHON3 # runtime - select BR2_PACKAGE_PYTHON_IPADDRESS if BR2_PACKAGE_PYTHON # runtime help cryptography is a package designed to expose cryptographic primitives and recipes to Python developers. |