diff options
author | Yegor Yefremov <yegorslists@googlemail.com> | 2017-09-13 16:18:59 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2017-09-22 23:35:37 +0200 |
commit | 662b775c5c89afc6ee92de844a4a8b13873de649 (patch) | |
tree | 00fdccd24da4f0001ced1e1bb4be2153e197477a /package/python-aiocoap | |
parent | c8352f997df76b6a76b3316a8d312540413097ef (diff) | |
download | buildroot-662b775c5c89afc6ee92de844a4a8b13873de649.tar.gz buildroot-662b775c5c89afc6ee92de844a4a8b13873de649.zip |
python-aiocoap: new package
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/python-aiocoap')
-rw-r--r-- | package/python-aiocoap/Config.in | 7 | ||||
-rw-r--r-- | package/python-aiocoap/python-aiocoap.hash | 4 | ||||
-rw-r--r-- | package/python-aiocoap/python-aiocoap.mk | 14 |
3 files changed, 25 insertions, 0 deletions
diff --git a/package/python-aiocoap/Config.in b/package/python-aiocoap/Config.in new file mode 100644 index 0000000000..cf5ca4e844 --- /dev/null +++ b/package/python-aiocoap/Config.in @@ -0,0 +1,7 @@ +config BR2_PACKAGE_PYTHON_AIOCOAP + bool "python-aiocoap" + depends on BR2_PACKAGE_PYTHON3 + help + Python CoAP library. + + https://github.com/chrysn/aiocoap diff --git a/package/python-aiocoap/python-aiocoap.hash b/package/python-aiocoap/python-aiocoap.hash new file mode 100644 index 0000000000..6df482aa68 --- /dev/null +++ b/package/python-aiocoap/python-aiocoap.hash @@ -0,0 +1,4 @@ +# md5 from https://pypi.python.org/pypi/aiocoap/json, sha256 locally computed +md5 f5fed00767b4197f2fbaa0ff95cbbf78 aiocoap-0.3.tar.gz +sha256 402d4151db6d8d0b1d66af5b6e10e0de1521decbf12140637e5b8d2aa9c5aef6 aiocoap-0.3.tar.gz +sha256 2bb211d412a6bfa4b2a9cf01123c7fe90e5e6185938896e23ab07b84f8494180 LICENSE diff --git a/package/python-aiocoap/python-aiocoap.mk b/package/python-aiocoap/python-aiocoap.mk new file mode 100644 index 0000000000..a2db70b803 --- /dev/null +++ b/package/python-aiocoap/python-aiocoap.mk @@ -0,0 +1,14 @@ +################################################################################ +# +# python-aiocoap +# +################################################################################ + +PYTHON_AIOCOAP_VERSION = 0.3 +PYTHON_AIOCOAP_SOURCE = aiocoap-$(PYTHON_AIOCOAP_VERSION).tar.gz +PYTHON_AIOCOAP_SITE = https://pypi.python.org/packages/9c/f6/d839e4b14258d76e74a39810829c13f8dd31de2bfe0915579b2a609d1bbe +PYTHON_AIOCOAP_SETUP_TYPE = setuptools +PYTHON_AIOCOAP_LICENSE = MIT +PYTHON_AIOCOAP_LICENSE_FILES = LICENSE + +$(eval $(python-package)) |