blob: ace15c40e3071d5e67fa14fae22c1b5eed08b77f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 2013-2023 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.package import *
class PyPyvizComms(PythonPackage):
"""Bidirectional communication for the HoloViz ecosystem."""
homepage = "https://holoviz.org/"
pypi = "pyviz_comms/pyviz_comms-2.2.1.tar.gz"
license("BSD-3-Clause")
version("2.2.1", sha256="a26145b8ce43d2d934b3c6826d77b913ce105c528eb2e494c890b3e3525ddf33")
depends_on("py-setuptools@40.8:60", type="build")
depends_on("py-param", type=("build", "run"))
|