
We'd like to use a consistent checksum scheme everywhere so that we can: a) incorporate archive checksums into our specs and have a consistent hashing algorithm across all specs. b) index mirrors with a consistent type of checksum, and not one that is dependent on how spack packages are written. - [x] convert existing md5, sha224, sha512, sha1 checksums to sha256
27 lines
1.2 KiB
Python
27 lines
1.2 KiB
Python
# Copyright 2013-2019 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 PyJupyterConsole(PythonPackage):
|
|
"""Jupyter Terminal Console"""
|
|
|
|
homepage = "https://github.com/jupyter/jupyter_console"
|
|
url = "https://github.com/jupyter/jupyter_console/archive/5.0.0.tar.gz"
|
|
|
|
version('5.2.0', sha256='371d03aeefcf48967f2f00af4c1709f52d2a688deee33f395c6330e4e8aa171c')
|
|
version('5.0.0', sha256='e966b2b5bf9a1e8c5bd11a6335bb11f68ec585ea39b801721b2ed9dd964468fa')
|
|
version('4.1.1', sha256='0bb06a1f878d0c44c2f6f66406a80f949bcd86f3508035500af7dceffb9cc7dc')
|
|
version('4.1.0', sha256='9c72097721676ba13d036e68d82ef9ef76772254c8a995a474339a8bd48aaf91')
|
|
version('4.0.3', sha256='b1867a89b693f247e9089a8f367fa4f27af6eac27930cad2966054adfa7b9aa1')
|
|
version('4.0.2', sha256='116a56763899bbb12c762f865372eb52c08619ef070c237c7f1387e192bfd3df')
|
|
|
|
depends_on('python@2.7:2.8,3.3:')
|
|
depends_on('py-jupyter-client', type=('build', 'run'))
|
|
depends_on('py-ipython', type=('build', 'run'))
|
|
depends_on('py-ipykernel', type=('build', 'run'))
|
|
depends_on('py-pygments', type=('build', 'run'))
|