diff --git a/packages/py-ipyfilechooser/package.py b/packages/py-ipyfilechooser/package.py new file mode 100644 index 0000000000000000000000000000000000000000..5d5cd2a6fb896d885be183f7259d4dc746c28639 --- /dev/null +++ b/packages/py-ipyfilechooser/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 PyIpyfilechooser(PythonPackage): + """Python file chooser widget for use in Jupyter/IPython in conjunction with ipywidgets """ + + homepage = "https://github.com/crahan/ipyfilechooser" + pypi = "ipyfilechooser/ipyfilechooser-0.6.0.tar.gz" + + maintainers("DennisDoll", "mloshakov", "acascais") + + #license("MIT", checked_by="DennisDoll") + + version("0.6.0", sha256="41df9e4395a924f8e1b78e2804dbe5066dc3fdc233fb07fecfcdc2a0c9a7d8d3") + + depends_on("python@3:", type=("build", "run")) + depends_on("py-ipywidgets", type=("build", "run")) + + depends_on("py-setuptools", type="build")