summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-panel/package.py
blob: 8a471174bbef81893055d04030a5c833a68d266c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# 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 PyPanel(PythonPackage):
    """A high level app and dashboarding solution for Python."""

    homepage = "http://panel.holoviz.org/"
    pypi = "panel/panel-0.14.4.tar.gz"

    license("BSD-3-Clause")

    version("0.14.4", sha256="b853d2f53d7738ec6372525360c5bf9427a71ed990685ccac703bc9b442e9951")

    depends_on("py-param@1.12:", type=("build", "run"))
    depends_on("py-pyct@0.4.4:", type=("build", "run"))
    depends_on("py-setuptools@42:", type=("build", "run"))
    depends_on("py-bokeh@2.4.3:2.4", type=("build", "run"))
    depends_on("py-pyviz-comms@0.7.4:", type=("build", "run"))
    depends_on("py-requests", type=("build", "run"))
    depends_on("py-bleach", type=("build", "run"))
    depends_on("py-packaging", type="build")
    depends_on("py-tqdm@4.48:", type=("build", "run"))
    depends_on("py-markdown", type=("build", "run"))
    depends_on("py-typing-extensions", type=("build", "run"))