diff --git a/package/python-iwlib/Config.in b/package/python-iwlib/Config.in index eb28d674d9..e15ae38025 100644 --- a/package/python-iwlib/Config.in +++ b/package/python-iwlib/Config.in @@ -1,6 +1,7 @@ config BR2_PACKAGE_PYTHON_IWLIB bool "python-iwlib" depends on BR2_PACKAGE_WIRELESS_TOOLS_LIB + select BR2_PACKAGE_PYTHON_CFFI # runtime help python-iwlib is a package for interfacing with iwlib, providing an implementation to the wireless tools in Linux. diff --git a/package/python-iwlib/python-iwlib.hash b/package/python-iwlib/python-iwlib.hash index 4d71a3fea6..d1848e0bd7 100644 --- a/package/python-iwlib/python-iwlib.hash +++ b/package/python-iwlib/python-iwlib.hash @@ -1,3 +1,5 @@ -# Locally calculated -sha256 7f1ad4354284a452388e178b5d9b191fa5a68a9183423a90a1d261ba2ebd1cac python-iwlib-1.5.tar.gz +# md5, sha256 from https://pypi.org/pypi/iwlib/json +md5 66016f4f7f53128525d1f9d9de7a6fed iwlib-1.7.0.tar.gz +sha256 a805f6597a70ee3001aba8f039fb7b2dcb75dc15c4e7852f5594fd6379196da1 iwlib-1.7.0.tar.gz +# Locally computed sha256 checksums sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 COPYING diff --git a/package/python-iwlib/python-iwlib.mk b/package/python-iwlib/python-iwlib.mk index 9d0985567d..7a4fee7fc9 100644 --- a/package/python-iwlib/python-iwlib.mk +++ b/package/python-iwlib/python-iwlib.mk @@ -4,11 +4,12 @@ # ################################################################################ -PYTHON_IWLIB_VERSION = 1.5 -PYTHON_IWLIB_SITE = $(call github,nhoad,python-iwlib,$(PYTHON_IWLIB_VERSION)) +PYTHON_IWLIB_VERSION = 1.7.0 +PYTHON_IWLIB_SOURCE = iwlib-$(PYTHON_IWLIB_VERSION).tar.gz +PYTHON_IWLIB_SITE = https://files.pythonhosted.org/packages/59/44/fd72c0a7094baeb448dc9e87b3d579da98e2b8593c3fe05c5f9dd20dc6bc PYTHON_IWLIB_LICENSE = GPL-2.0 PYTHON_IWLIB_LICENSE_FILES = COPYING PYTHON_IWLIB_SETUP_TYPE = setuptools -PYTHON_IWLIB_DEPENDENCIES = wireless_tools +PYTHON_IWLIB_DEPENDENCIES = host-python-cffi wireless_tools $(eval $(python-package))