[py-aiosignal] Added new py-aiosignal package (#28138)

This commit is contained in:
Matthieu Dorier 2022-01-02 17:31:47 +01:00 committed by GitHub
parent fc9bfe5317
commit a99d485016
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,20 @@
# Copyright 2013-2021 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 PyAiosignal(PythonPackage):
"""A project to manage callbacks in asyncio projects."""
homepage = "https://aiosignal.readthedocs.io/"
pypi = "aiosignal/aiosignal-1.2.0.tar.gz"
version('1.2.0', sha256='78ed67db6c7b7ced4f98e495e572106d5c432a93e1ddd1bf475e1dc05f5b7df2')
depends_on('python@3.6:', type=('build', 'run'))
depends_on('py-setuptools', type='build')
depends_on('py-frozenlist@1.1.0:', type=('build', 'run'))