summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-proglog/package.py
blob: 008f98e5bfc09bd455eb766664d0fb84cbbd4763 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2013-2022 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.package import *


class PyProglog(PythonPackage):
    """Proglog is a progress logging system for Python. It
    allows to build complex libraries while giving the user
    control on the management of logs, callbacks and progress
    bars."""

    homepage = "https://pypi.org/project/proglog/"
    pypi = "proglog/proglog-0.1.9.tar.gz"

    version('0.1.9', sha256='d8c4ccbf2138e0c5e3f3fc0d80dc51d7e69dcfe8bfde4cacb566725092a5b18d')

    depends_on('py-setuptools', type='build')
    depends_on('py-tqdm', type=('build', 'run'))