summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-panel/package.py
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2023-03-22 08:08:19 -0500
committerGitHub <noreply@github.com>2023-03-22 14:08:19 +0100
commitf15efd27bdb7a679622105ad537692a5039d1b5a (patch)
tree7cf34de1901535aef0b2944aa41e8be2ed0677e1 /var/spack/repos/builtin/packages/py-panel/package.py
parent668fb7f5ddeaf36193aa5f35acb20010e8b45dae (diff)
downloadspack-f15efd27bdb7a679622105ad537692a5039d1b5a.tar.gz
spack-f15efd27bdb7a679622105ad537692a5039d1b5a.tar.bz2
spack-f15efd27bdb7a679622105ad537692a5039d1b5a.tar.xz
spack-f15efd27bdb7a679622105ad537692a5039d1b5a.zip
py-lightning: fix dependencies (#36213)
Diffstat (limited to 'var/spack/repos/builtin/packages/py-panel/package.py')
-rw-r--r--var/spack/repos/builtin/packages/py-panel/package.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-panel/package.py b/var/spack/repos/builtin/packages/py-panel/package.py
new file mode 100644
index 0000000000..084feff5aa
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-panel/package.py
@@ -0,0 +1,27 @@
+# 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"
+
+ 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"))