
* Add intel cluster package update2 for 2020 * add pacifica cli tools, and pager * remove boilerplate code * update flake8 lints * update flake8 lint, missed one * add a description for pager * Shorten a line * Remove whitespace * check on dependencies and move urls to proper place * Remove import package as it seems it is not required * add requests to the uploader config * remove blank Line * change to build and run for packages * add run and build to the packages * move from url method to pypi method * adjust requirements based on feedback from adamjstewart * remove python 3 requirement, and add setuptools-scm * remove dependence on python Co-authored-by: Evan Felix <evan.felix@pnnl.gov>
17 lines
579 B
Python
17 lines
579 B
Python
# 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 PyPager(PythonPackage):
|
|
"""Python module that pages output to the screen,
|
|
reads keys and console dimensions without executing external utils."""
|
|
|
|
homepage = "http://bitbucket.org/techtonik/python-pager"
|
|
pypi = "pager/pager-3.3.tar.gz"
|
|
|
|
version('3.3', sha256='18aa45ec877dca732e599531c7b3b0b22ed6a4445febdf1bdf7da2761cca340d')
|