spack/var/spack/repos/builtin/packages/py-flask-socketio/package.py
Todd Gamblin eea786f4e8 relicense: replace LGPL headers with Apache-2.0/MIT SPDX headers
- remove the old LGPL license headers from all files in Spack
- add SPDX headers to all files
  - core and most packages are (Apache-2.0 OR MIT)
  - a very small number of remaining packages are LGPL-2.1-only
2018-10-17 14:42:06 -07:00

26 lines
1.1 KiB
Python

# Copyright 2013-2018 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 PyFlaskSocketio(PythonPackage):
"""Flask-SocketIO gives Flask applications access to low latency
bi-directional communications between the clients and the server.
The client-side application can use any of the SocketIO official clients
libraries in Javascript, C++, Java and Swift, or any compatible client to
establish a permanent connection to the server.
"""
homepage = "https://flask-socketio.readthedocs.io"
url = "https://pypi.io/packages/source/F/Flask-SocketIO/Flask-SocketIO-2.9.6.tar.gz"
version('2.9.6', 'bca83faf38355bd91911f2f140f9b50f')
depends_on('py-setuptools', type='build')
depends_on('py-flask@0.9:', type=('build', 'run'))
depends_on('py-python-socketio@1.6.1:', type=('build', 'run'))
depends_on('py-werkzeug', type=('build', 'run'))