diff options
author | Sinan <sbulutw@gmail.com> | 2019-06-22 15:05:03 -0700 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2019-06-22 17:05:03 -0500 |
commit | c83f8a425da2f6eb01a33bc7cfcc583abfb78618 (patch) | |
tree | 68a2dc638cc67dea099bc8b28da71cc91607eb04 | |
parent | 1ae03b327cd8297cdf1067c03ec833d739d36d8b (diff) | |
download | spack-c83f8a425da2f6eb01a33bc7cfcc583abfb78618.tar.gz spack-c83f8a425da2f6eb01a33bc7cfcc583abfb78618.tar.bz2 spack-c83f8a425da2f6eb01a33bc7cfcc583abfb78618.tar.xz spack-c83f8a425da2f6eb01a33bc7cfcc583abfb78618.zip |
new package/py-blessed (#11656)
* new package/py-blessed
* make flake8 happy
* fix docstring
* tab to spaces
* Update var/spack/repos/builtin/packages/py-blessed/package.py
specify dependency version.
Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com>
* Update var/spack/repos/builtin/packages/py-blessed/package.py
specify dependency version
Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com>
* add setuptools as depedency
-rw-r--r-- | var/spack/repos/builtin/packages/py-blessed/package.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-blessed/package.py b/var/spack/repos/builtin/packages/py-blessed/package.py new file mode 100644 index 0000000000..5f5f7f0fdc --- /dev/null +++ b/var/spack/repos/builtin/packages/py-blessed/package.py @@ -0,0 +1,21 @@ +# 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 PyBlessed(PythonPackage): + """Blessed is a thin, practical wrapper around terminal capabilities in + Python.""" + + homepage = "https://github.com/jquast/blessed" + url = "https://pypi.io/packages/source/b/blessed/blessed-1.15.0.tar.gz" + + version('1.15.0', sha256='777b0b6b5ce51f3832e498c22bc6a093b6b5f99148c7cbf866d26e2dec51ef21') + + depends_on('py-setuptools', type='build') + depends_on('py-wcwidth@0.1.4:', type=('build', 'run')) + depends_on('py-six@1.9.0:', type=('build', 'run')) |