py-igv-notebook: new package (#46723)

This commit is contained in:
Ashim Mahara 2024-10-03 07:44:16 -04:00 committed by GitHub
parent af43f6be0d
commit ad75e8fc95
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,24 @@
# 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 PyIgvNotebook(PythonPackage):
"""Module for embedding igv.js in an IPython notebook"""
homepage = "https://github.com/igvteam/igv-notebook"
pypi = "igv-notebook/igv-notebook-0.5.2.tar.gz"
license("MIT license", checked_by="ashim-mahara")
version("0.5.2", sha256="8b47a1a6c41f11359a07264815401cc4000c99722c77cbb749182bf6b66cf69c")
depends_on("py-setuptools", type="build")
depends_on("py-ipykernel", type=("build", "run"))
depends_on("py-ipython", type=("build", "run"))
depends_on("py-requests", type=("build", "run"))