summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authordarmac <xiaojun2@hisilicon.com>2020-10-19 17:42:48 +0800
committerGitHub <noreply@github.com>2020-10-19 11:42:48 +0200
commitd48b18650034d28d522ec9fbda272279ff91c5c3 (patch)
tree8040db92cb3826033f3d6c6537e35995bb6ffa67 /var
parent3807ceec0b8bba425038272a65009db2d68e19e1 (diff)
downloadspack-d48b18650034d28d522ec9fbda272279ff91c5c3.tar.gz
spack-d48b18650034d28d522ec9fbda272279ff91c5c3.tar.bz2
spack-d48b18650034d28d522ec9fbda272279ff91c5c3.tar.xz
spack-d48b18650034d28d522ec9fbda272279ff91c5c3.zip
py-coapthon3: added new package at v1.0.1 (#18990)
* Add new package: py-coapthon3 * remove mistake version
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-coapthon3/package.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-coapthon3/package.py b/var/spack/repos/builtin/packages/py-coapthon3/package.py
new file mode 100644
index 0000000000..2697b8e16a
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-coapthon3/package.py
@@ -0,0 +1,21 @@
+# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
+#
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
+from spack import *
+
+
+class PyCoapthon3(PythonPackage):
+ """CoAPthon3 is a porting to python3 of my CoAPthon library.
+ CoAPthon3 is a python3 library to the CoAP protocol compliant
+ with the RFC. Branch is available for the Twisted framework."""
+
+ homepage = "https://github.com/Tanganelli/CoAPthon3/"
+ url = "https://github.com/Tanganelli/CoAPthon3/archive/1.0.1.tar.gz"
+
+ version('1.0.1', sha256='331150a581708d47b208cee3b067ced80a00f0cc1278e913ec546e6c6b28bffd')
+ version('1.0', sha256='63eb083269c2a286aedd206d3df17ab67fa978dc43caf34eaab9498da15c497a')
+
+ depends_on('py-sphinx', type=('build', 'run'))
+ depends_on('py-cachetools', type=('build', 'run'))