New package: py-aiofiles (#19205)

This commit is contained in:
rvinaybharadwaj 2020-10-06 18:43:13 -06:00 committed by GitHub
parent 6b70597271
commit 7dbc07373d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,19 @@
# 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 PyAiofiles(PythonPackage):
"""aiofiles is an Apache2 licensed library, written in Python, for
handling local disk files in asyncio applications."""
homepage = "https://github.com/Tinche/aiofiles"
url = "https://pypi.io/packages/source/a/aiofiles/aiofiles-0.5.0.tar.gz"
version('0.5.0', sha256='98e6bcfd1b50f97db4980e182ddd509b7cc35909e903a8fe50d8849e02d815af')
depends_on('py-setuptools', type='build')
depends_on('py-wheel', type='build')