diff options
-rw-r--r-- | var/spack/repos/builtin/packages/py-ipyvuetify/package.py | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-ipyvuetify/package.py b/var/spack/repos/builtin/packages/py-ipyvuetify/package.py new file mode 100644 index 0000000000..a0706c0b3d --- /dev/null +++ b/var/spack/repos/builtin/packages/py-ipyvuetify/package.py @@ -0,0 +1,30 @@ +# 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 PyIpyvuetify(PythonPackage): + """ + Jupyter widgets based on vuetify UI components which implement Google's + Material Design Spec with the Vue.js framework. + """ + + homepage = "https://github.com/widgetti/ipyvuetify/tree/master" + pypi = "ipyvuetify/ipyvuetify-1.9.0.tar.gz" + + license("MIT") + + maintainers("jeremyfix") + + version("1.9.0", sha256="9c537e218299de32194b1da949d6b96bffe6c00f36bb6035409f2485feb881e7") + + depends_on("python@3.6:", type=("build", "run")) + depends_on("py-setuptools@40.8.0:", type="build") + + depends_on("py-jupyter-packaging@0.7.9:0.7", type="build") + depends_on("py-jupyterlab@3", type="build") + depends_on("py-pynpm", type="build") + depends_on("py-ipyvue@1.7:1", type=("build", "run")) |