
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
20 lines
717 B
Python
20 lines
717 B
Python
# 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 PyEventlet(PythonPackage):
|
|
"""Concurrent networking library for Python"""
|
|
|
|
homepage = "https://github.com/eventlet/eventlet"
|
|
url = "https://github.com/eventlet/eventlet/releases/download/v0.22.0/eventlet-0.22.0.tar.gz"
|
|
|
|
version('0.22.0', sha256='6d22464f448fdf144a9d566c157299d686bbe324554dd7729df9ccd05ca66439')
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
depends_on('py-greenlet@0.3:')
|
|
depends_on('py-enum34', type=('build', 'run'), when='^python@:3.3.99')
|