spack/var/spack/repos/builtin/packages/py-bash-kernel/package.py
2025-01-02 15:40:28 +01:00

21 lines
556 B
Python

# Copyright Spack Project Developers. See COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack.package import *
class PyBashKernel(PythonPackage):
"""A Jupyter kernel for bash."""
homepage = "https://github.com/takluyver/bash_kernel"
pypi = "bash_kernel/bash_kernel-0.7.2.tar.gz"
license("BSD-3-Clause")
version("0.7.2", sha256="a08c84eddd8179de5234105821fd5cc210015671a0bd3cd0bc4f631c475e1670")
depends_on("py-flit", type="build")
depends_on("py-pexpect@4.0:", type=("build", "run"))