
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
21 lines
826 B
Python
21 lines
826 B
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 PyJedi(PythonPackage):
|
|
"""An autocompletion tool for Python that can be used for text editors."""
|
|
|
|
homepage = "https://github.com/davidhalter/jedi"
|
|
url = "https://pypi.io/packages/source/j/jedi/jedi-0.9.0.tar.gz"
|
|
|
|
# unfortunately pypi.io only offers a .whl
|
|
version('0.10.0', sha256='d6a7344df9c80562c3f62199278004ccc7c5889be9f1a6aa5abde117ec085123',
|
|
url='https://github.com/davidhalter/jedi/archive/v0.10.0.tar.gz')
|
|
version('0.9.0', sha256='3b4c19fba31bdead9ab7350fb9fa7c914c59b0a807dcdd5c00a05feb85491d31')
|
|
|
|
depends_on('py-setuptools', type='build')
|