spack/var/spack/repos/builtin/packages/py-websockets/package.py
Andrew W Elble d89bc1d998
new package(s): py-gql (#17769)
* new package(s): py-gql

and related dependencies:
py-aiohttp
py-async-timeout
py-graphql-core
py-idna-ssl
py-multidict
py-websockets
py-yarl

new versions:
py-requests

* fixes

Co-authored-by: Andrew W Elble <aweits@skl-a-00.rc.rit.edu>
2020-07-31 14:54:25 -05:00

18 lines
700 B
Python

# 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)
class PyWebsockets(PythonPackage):
"""websockets is a library for building WebSocket servers and
clients in Python with a focus on correctness and simplicity."""
homepage = "https://github.com/aaugustin/websockets"
url = "https://github.com/aaugustin/websockets/archive/8.1.tar.gz"
version('8.1', sha256='c19ce96ad5f7606127d3915364144df93fb865a215784b06048fae3d39364f14')
depends_on('py-setuptools', type='build')
depends_on('python@3.6.1:', type=('build', 'run'))