py-ipyvue: new package (#42789)

* add spack recipe for ipyvue

* Specify version for ipywidgets

Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>

---------

Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
This commit is contained in:
Jeremy Fix
2024-02-23 13:37:48 +01:00
committed by GitHub
parent 5b96c2e89f
commit 4550fb83c0

View File

@@ -0,0 +1,25 @@
# 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 PyIpyvue(PythonPackage):
"""
Jupyter widgets base for Vue libraries.
"""
homepage = "https://github.com/widgetti/ipyvue"
pypi = "ipyvue/ipyvue-1.10.1.tar.gz"
license("MIT")
maintainers("jeremyfix")
version("1.10.1", sha256="20615ce86ba516cf0b7aad84cc607e4e2c9104232e954cd0eccbf33530a5e1d4")
depends_on("py-setuptools", type="build")
depends_on("py-ipywidgets@7:", type=("build", "run"))