From 8c3b0811475c917ca9d177b257e0d686a67c773e Mon Sep 17 00:00:00 2001 From: darmac Date: Thu, 24 Sep 2020 09:30:17 +0800 Subject: [PATCH] Add new package: py-asyncio (#18809) --- .../builtin/packages/py-asyncio/package.py | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 var/spack/repos/builtin/packages/py-asyncio/package.py diff --git a/var/spack/repos/builtin/packages/py-asyncio/package.py b/var/spack/repos/builtin/packages/py-asyncio/package.py new file mode 100644 index 00000000000..42de434cde2 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-asyncio/package.py @@ -0,0 +1,23 @@ +# 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 PyAsyncio(PythonPackage): + """The asyncio module provides infrastructure for writing + single-threaded concurrent code using coroutines, multiplexing I/O + access over sockets and other resources, running network clients + and servers, and other related primitives.""" + + homepage = "https://docs.python.org/3/library/asyncio.html" + url = "https://github.com/python/asyncio/archive/3.4.3.tar.gz" + + version('3.4.3', sha256='b22225680ea04c3528b7fa03e9c6d152470173dd3873996b8cb29fcb37799f1b') + version('3.4.2', sha256='ba28d351c579875e2a1cb1989e310285d3eb76c5bb749694b6ddd3901f8d39de') + version('3.4.1', sha256='51cdfbd4964ef8286cbef7d88f9b7abcc8b710ecec0a0794aa354f94ef703126') + + depends_on('python@3.3:', type=('build', 'run')) + depends_on('py-setuptools', type='build')