summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorSinan <sbulutw@gmail.com>2019-05-14 18:49:28 -0700
committerPeter Scheibel <scheibel1@llnl.gov>2019-05-15 10:49:28 +0900
commit249845e80be39bc5bb9e426a1d8a6e67452b8b01 (patch)
tree467ed64ca6989e2819efb8a085722c14cf4c93e5 /var
parent544cf085b4795029c898faecd3ac0060c8baba24 (diff)
downloadspack-249845e80be39bc5bb9e426a1d8a6e67452b8b01.tar.gz
spack-249845e80be39bc5bb9e426a1d8a6e67452b8b01.tar.bz2
spack-249845e80be39bc5bb9e426a1d8a6e67452b8b01.tar.xz
spack-249845e80be39bc5bb9e426a1d8a6e67452b8b01.zip
New package: py-progressbar2 (#11421)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-progressbar2/package.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-progressbar2/package.py b/var/spack/repos/builtin/packages/py-progressbar2/package.py
new file mode 100644
index 0000000000..91a8217f60
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-progressbar2/package.py
@@ -0,0 +1,20 @@
+# 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 PyProgressbar2(PythonPackage):
+ """A progress bar for Python 2 and Python 3"""
+
+ homepage = "https://github.com/WoLpH/python-progressbar"
+ url = "https://files.pythonhosted.org/packages/source/p/progressbar2/progressbar2-3.39.3.tar.gz"
+
+ version('3.39.3', sha256='8e5b5419e04193bb7c3fea71579937bbbcd64c26472b929718c2fe7ec420fe39')
+
+ depends_on('py-setuptools', type='build')
+ depends_on('py-six', type=('build', 'run'))
+ depends_on('py-python-utils', type=('build', 'run'))