Add new package: py-asyncio (#18809)

This commit is contained in:
darmac 2020-09-24 09:30:17 +08:00 committed by GitHub
parent 9263f56b6d
commit 8c3b081147
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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')