2022-01-13 03:21:41 +08:00
|
|
|
# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
|
2021-12-24 20:50:45 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2022-05-29 00:55:44 +08:00
|
|
|
from spack.package import *
|
2021-12-24 20:50:45 +08:00
|
|
|
|
|
|
|
|
|
|
|
class PyFastprogress(PythonPackage):
|
|
|
|
"""A fast and simple progress bar for Jupyter Notebook and
|
|
|
|
console. Created by Sylvain Gugger for fast.ai."""
|
|
|
|
|
|
|
|
homepage = "https://github.com/fastai/fastprogress"
|
|
|
|
pypi = "fastprogress/fastprogress-1.0.0.tar.gz"
|
|
|
|
|
|
|
|
version('1.0.0', sha256='89e28ac1d2a5412aab18ee3f3dfd1ee8b5c1f2f7a44d0add0d0d4f69f0191bfe')
|
|
|
|
|
|
|
|
depends_on('python@3.6:', type=('build', 'run'))
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
|
|
depends_on('py-numpy', type=('build', 'run'))
|