Skip to content
Snippets Groups Projects

Draft: feat add: py-neuralactivitycubic

2 unresolved threads
Compare and
5 files
+ 119
0
Compare changes
  • Side-by-side
  • Inline
Files
5
+ 25
0
# 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")