2021-01-02 15:10:28 +08:00
|
|
|
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
|
2019-05-15 09:49:28 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
|
|
|
|
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class PyProgressbar2(PythonPackage):
|
|
|
|
"""A progress bar for Python 2 and Python 3"""
|
|
|
|
|
|
|
|
homepage = "https://github.com/WoLpH/python-progressbar"
|
2020-12-30 08:44:04 +08:00
|
|
|
pypi = "progressbar2/progressbar2-3.50.1.tar.gz"
|
2019-05-15 09:49:28 +08:00
|
|
|
|
2021-11-20 04:35:44 +08:00
|
|
|
version('3.55.0', sha256='86835d1f1a9317ab41aeb1da5e4184975e2306586839d66daf63067c102f8f04')
|
2020-04-06 04:44:36 +08:00
|
|
|
version('3.50.1', sha256='2c21c14482016162852c8265da03886c2b4dea6f84e5a817ad9b39f6bd82a772')
|
2019-05-15 09:49:28 +08:00
|
|
|
version('3.39.3', sha256='8e5b5419e04193bb7c3fea71579937bbbcd64c26472b929718c2fe7ec420fe39')
|
|
|
|
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
|
|
depends_on('py-six', type=('build', 'run'))
|
2020-04-06 04:44:36 +08:00
|
|
|
depends_on('py-python-utils@2.3.0:', type=('build', 'run'))
|