diff options
author | Christopher Christofi <77968333+ChristopherChristofi@users.noreply.github.com> | 2024-03-18 09:16:58 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-18 10:16:58 +0100 |
commit | fef6aed6271c532f1c562c725cab71572d15fee8 (patch) | |
tree | 72afa20120da63e2aa4c00f7e8f9cc7dd786eb31 | |
parent | 3445da807eea2034fd2d59213765a7897c3d5eae (diff) | |
download | spack-fef6aed6271c532f1c562c725cab71572d15fee8.tar.gz spack-fef6aed6271c532f1c562c725cab71572d15fee8.tar.bz2 spack-fef6aed6271c532f1c562c725cab71572d15fee8.tar.xz spack-fef6aed6271c532f1c562c725cab71572d15fee8.zip |
py-branca: add new package (#43236)
-rw-r--r-- | var/spack/repos/builtin/packages/py-branca/package.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-branca/package.py b/var/spack/repos/builtin/packages/py-branca/package.py new file mode 100644 index 0000000000..c4cafd9ee3 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-branca/package.py @@ -0,0 +1,22 @@ +# Copyright 2013-2024 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 PyBranca(PythonPackage): + """Generate complex HTML+JS pages with Python.""" + + homepage = "https://python-visualization.github.io/branca" + pypi = "branca/branca-0.7.1.tar.gz" + + license("MIT") + + version("0.7.1", sha256="e6b6f37a37bc0abffd960c68c045a7fe025d628eff87fedf6ab6ca814812110c") + + depends_on("python@3.7:", type=("build", "run")) + depends_on("py-setuptools@41.2:", type="build") + depends_on("py-setuptools-scm", type="build") + depends_on("py-jinja2@3:", type=("build", "run")) |