diff options
author | rvinaybharadwaj <vinayr@lanl.gov> | 2020-10-07 14:14:47 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-07 14:14:47 -0600 |
commit | 3401404a262a9dfa6e1a5ef95fe8fa74b522b3e2 (patch) | |
tree | 6fd6ae2ee4215570282b77127648d20e4e5f398a | |
parent | 5580dbd899302d0ebf432e4b781aa0c0b8549d6c (diff) | |
download | spack-3401404a262a9dfa6e1a5ef95fe8fa74b522b3e2.tar.gz spack-3401404a262a9dfa6e1a5ef95fe8fa74b522b3e2.tar.bz2 spack-3401404a262a9dfa6e1a5ef95fe8fa74b522b3e2.tar.xz spack-3401404a262a9dfa6e1a5ef95fe8fa74b522b3e2.zip |
Add py-uvloop (#19169)
-rw-r--r-- | var/spack/repos/builtin/packages/py-uvloop/package.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-uvloop/package.py b/var/spack/repos/builtin/packages/py-uvloop/package.py new file mode 100644 index 0000000000..52a7709640 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-uvloop/package.py @@ -0,0 +1,18 @@ +# 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 PyUvloop(PythonPackage): + """uvloop is a fast, drop-in replacement of the built-in asyncio event""" + + homepage = "http://github.com/MagicStack/uvloop" + url = "https://pypi.io/packages/source/u/uvloop/uvloop-0.14.0.tar.gz" + + version('0.14.0', sha256='123ac9c0c7dd71464f58f1b4ee0bbd81285d96cdda8bc3519281b8973e3a461e') + + depends_on('py-setuptools', type='build') + depends_on('py-wheel', type='build') |