From: Peter Korsgaard Date: Wed, 4 Apr 2018 15:51:31 +0000 (+0200) Subject: python-webpy: needs hashlib support in python X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=543b0d50fbbb552296749d0cf18443aacfc6e58d;p=buildroot.git python-webpy: needs hashlib support in python webpy uses hashlib for session handling, so ensure it is available: web/session.py: import hashlib web/session.py: sha1 = hashlib.sha1 Signed-off-by: Peter Korsgaard Signed-off-by: Thomas Petazzoni --- diff --git a/package/python-webpy/Config.in b/package/python-webpy/Config.in index 12dbe61723..5f4df7832b 100644 --- a/package/python-webpy/Config.in +++ b/package/python-webpy/Config.in @@ -1,6 +1,7 @@ config BR2_PACKAGE_PYTHON_WEBPY bool "python-webpy" depends on BR2_PACKAGE_PYTHON + select BR2_PACKAGE_PYTHON_HASHLIB help web.py is a web framework for Python that is as simple as it is powerful.