This commit is contained in:
rvinaybharadwaj 2020-10-07 20:13:58 -06:00 committed by GitHub
parent 804b5f33f4
commit 26c1eb57db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,20 @@
# 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 PyH2(PythonPackage):
"""HTTP/2 State-Machine based protocol implementation"""
homepage = "https://github.com/python-hyper/hyper-h2"
url = "https://pypi.io/packages/source/h/h2/h2-4.0.0.tar.gz"
version('4.0.0', sha256='bb7ac7099dd67a857ed52c815a6192b6b1f5ba6b516237fc24a085341340593d')
depends_on('py-setuptools', type='build')
depends_on('py-wheel', type='build')
depends_on('py-hyperframe')
depends_on('py-hpack')