diff options
author | Manuela Kuhn <36827019+manuelakuhn@users.noreply.github.com> | 2021-07-09 13:16:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-09 13:16:43 +0200 |
commit | aeab3b287273f387e982d5e2d73ea753ca3f9acd (patch) | |
tree | 7b33784be72bce93459d1a23bb9c56b1363c942e | |
parent | 727f43f69f67a62e8f3b4c6ba75732fbccb18709 (diff) | |
download | spack-aeab3b287273f387e982d5e2d73ea753ca3f9acd.tar.gz spack-aeab3b287273f387e982d5e2d73ea753ca3f9acd.tar.bz2 spack-aeab3b287273f387e982d5e2d73ea753ca3f9acd.tar.xz spack-aeab3b287273f387e982d5e2d73ea753ca3f9acd.zip |
py-jupyter-packaging: add new package (#24751)
-rw-r--r-- | var/spack/repos/builtin/packages/py-jupyter-packaging/package.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-jupyter-packaging/package.py b/var/spack/repos/builtin/packages/py-jupyter-packaging/package.py new file mode 100644 index 0000000000..7875ec2b5d --- /dev/null +++ b/var/spack/repos/builtin/packages/py-jupyter-packaging/package.py @@ -0,0 +1,22 @@ +# 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 PyJupyterPackaging(PythonPackage): + """Jupyter Packaging Utilities.""" + + homepage = "https://github.com/jupyter/jupyter-packaging" + pypi = "jupyter_packaging/jupyter_packaging-0.10.4.tar.gz" + + version('0.10.4', sha256='589db027cb85a92612f9bcfaeecaa8a9072ac8a4bddaf827f648664258e587c4') + + depends_on('python@3.6:', type=('build', 'run')) + depends_on('py-setuptools@46.4.0:', type=('build', 'run')) + depends_on('py-packaging', type=('build', 'run')) + depends_on('py-tomlkit', type=('build', 'run')) + depends_on('py-wheel', type=('build', 'run')) + depends_on('py-deprecation', type=('build', 'run')) |