New package: py-proglog (#20750)

* [py-proglog] created template

* [py-proglog] added dependencies

* [py-proglog] fixed pypi url

* [py-proglog] removed fixmes, added homepage and description

* [py-proglog] url -> pypi

* [py-proglog] added dependency on setuptools
This commit is contained in:
Jen Herting 2021-01-27 21:59:19 -05:00 committed by GitHub
parent 3dc5ffaf65
commit 0ebefcc92b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,21 @@
# Copyright 2013-2020 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 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'))