-
Moritz-Alexander-Kern authoredeb6f4791
Forked from
EBRAINS RI / Tech Hub / Platform / EBRAINS Software Distribution / ebrains-spack-builds
386 commits behind the upstream repository.
package.py 1.23 KiB
# Copyright 2013-2022 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):
"""Panel makes it easy to combine widgets, plots, tables and other viewable Python objects into custom analysis tools, applications, and dashboards."""
homepage = "https://panel.holoviz.org/"
pypi = "panel/panel-1.3.1.tar.gz"
maintainers = ['']
version('1.3.1', sha256='d50abe3361239516b265444fef3a3c9f2faa0b0cfb671849c767829b857c7a5f')
depends_on('python@3.7:3.12', type=('build', 'run'))
depends_on('py-setuptools', type='build')
depends_on('py-pyct@0.4.4:', type='build')
depends_on('py-bokeh@3.3.0:3.4.0:', type=('build','run'))
depends_on('py-param@2.0.0:', type=('build','run'))
depends_on('py-pyviz-comms@0.7.4:', type=('build','run'))
depends_on('py-packaging', type=('build','run'))
depends_on('py-requests', type=('build','run'))
depends_on('py-bleach', type=('build','run'))
depends_on('py-tqdm@4.48.0:', type=('build','run'))
depends_on('py-markdown', type=('build','run'))
depends_on('py-wheel', type=('build','run'))