diff options
author | Yegor Yefremov <yegorslists@googlemail.com> | 2016-02-08 10:04:21 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-02-19 23:12:05 +0100 |
commit | fbeeb4c8cb4e44c654ca27db9ae05a83202f4104 (patch) | |
tree | 9927be9862f5e91ce9bbd1f6936b6c984f0b9ec6 /package/python-cryptography/Config.in | |
parent | 96a7a3cb7688ff67f02d45f0002c638ee5faadb6 (diff) | |
download | buildroot-fbeeb4c8cb4e44c654ca27db9ae05a83202f4104.tar.gz buildroot-fbeeb4c8cb4e44c654ca27db9ae05a83202f4104.zip |
python-cryptography: new package
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
[Thomas:
- fix license information: it is either Apache-2.0 *or* BSD-3c
- add the LICENSE file to the list of license files, since it is the
one that explains that the license is either Apache-2.0 or BSD-3c.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/python-cryptography/Config.in')
-rw-r--r-- | package/python-cryptography/Config.in | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/package/python-cryptography/Config.in b/package/python-cryptography/Config.in new file mode 100644 index 0000000000..9827cf82b6 --- /dev/null +++ b/package/python-cryptography/Config.in @@ -0,0 +1,23 @@ +config BR2_PACKAGE_PYTHON_CRYPTOGRAPHY + bool "python-cryptography" + depends on BR2_INSTALL_LIBSTDCPP # python-pyasn + select BR2_PACKAGE_OPENSSL + select BR2_PACKAGE_PYTHON_CFFI # runtime + select BR2_PACKAGE_PYTHON_IDNA # 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_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. + + https://cryptography.io + +comment "python-cryptography needs a toolchain w/ C++" + depends on !BR2_INSTALL_LIBSTDCPP |