summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAndrew-Dunning-NNL <67964561+Andrew-Dunning-NNL@users.noreply.github.com>2021-02-02 16:42:08 -0500
committerGitHub <noreply@github.com>2021-02-02 15:42:08 -0600
commit09190c0876db2fcab991c33b5f4c6371da99fc93 (patch)
tree33a9469b928a108aa65e36a78f6ad058c2b765ac /var
parent182ab78940258a53ba65f51b0db4564d46c42e4a (diff)
downloadspack-09190c0876db2fcab991c33b5f4c6371da99fc93.tar.gz
spack-09190c0876db2fcab991c33b5f4c6371da99fc93.tar.bz2
spack-09190c0876db2fcab991c33b5f4c6371da99fc93.tar.xz
spack-09190c0876db2fcab991c33b5f4c6371da99fc93.zip
py-bash-kernel: new package (#21441)
* py-bash-kernel: new package * py-bash-kernel: remove git bash kernel dependency
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-bash-kernel/package.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-bash-kernel/package.py b/var/spack/repos/builtin/packages/py-bash-kernel/package.py
new file mode 100644
index 0000000000..8d2b28af6b
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-bash-kernel/package.py
@@ -0,0 +1,18 @@
+# Copyright 2013-2021 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 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"
+
+ version('0.7.2', sha256='a08c84eddd8179de5234105821fd5cc210015671a0bd3cd0bc4f631c475e1670')
+
+ depends_on('py-pexpect@4.0:', type=('build', 'run'))