spack/var/spack/repos/builtin/packages/py-hpack/package.py

19 lines
576 B
Python
Raw Normal View History

# 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"
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')