diff options
author | Christopher Christofi <77968333+ChristopherChristofi@users.noreply.github.com> | 2024-03-28 09:50:37 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-28 10:50:37 +0100 |
commit | 13c4258e54f11f8867710a53da76a924221da839 (patch) | |
tree | 399d15a5fef048f19fd42487e257e0e950065f25 | |
parent | f29cb7f9539da4466ff4185a923595c11313d7ea (diff) | |
download | spack-13c4258e54f11f8867710a53da76a924221da839.tar.gz spack-13c4258e54f11f8867710a53da76a924221da839.tar.bz2 spack-13c4258e54f11f8867710a53da76a924221da839.tar.xz spack-13c4258e54f11f8867710a53da76a924221da839.zip |
py-folium: add new package with version 0.16.0 (#43352)
-rw-r--r-- | var/spack/repos/builtin/packages/py-folium/package.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-folium/package.py b/var/spack/repos/builtin/packages/py-folium/package.py new file mode 100644 index 0000000000..0b8eab4b87 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-folium/package.py @@ -0,0 +1,25 @@ +# 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 PyFolium(PythonPackage): + """Make beautiful maps with Leaflet.js & Python.""" + + homepage = "https://python-visualization.github.io/folium" + pypi = "folium/folium-0.16.0.tar.gz" + + license("MIT") + + version("0.16.0", sha256="2585ee9253dc758d3a365534caa6fb5fa0c244646db4dc5819afc67bbd4daabb") + + depends_on("py-setuptools@41.2:", type="build") + depends_on("py-setuptools-scm", type="build") + depends_on("py-branca@0.6.0:", type=("build", "run")) + depends_on("py-jinja2@2.9:", type=("build", "run")) + depends_on("py-numpy", type=("build", "run")) + depends_on("py-requests", type=("build", "run")) + depends_on("py-xyzservices", type=("build", "run")) |