2021-01-02 15:10:28 +08:00
|
|
|
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
|
2020-10-08 00:20:47 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class PyHpack(PythonPackage):
|
|
|
|
"""Pure-Python HPACK header compression"""
|
|
|
|
|
|
|
|
homepage = "https://github.com/python-hyper/hpack"
|
2020-12-30 08:44:04 +08:00
|
|
|
pypi = "hpack/hpack-4.0.0.tar.gz"
|
2020-10-08 00:20:47 +08:00
|
|
|
|
|
|
|
version('4.0.0', sha256='fc41de0c63e687ebffde81187a948221294896f6bdc0ae2312708df339430095')
|
|
|
|
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
|
|
depends_on('py-wheel', type='build')
|