2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-11-12 11:16:30 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2016-11-12 11:16:30 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
2017-01-17 10:13:37 +08:00
|
|
|
class PyWcwidth(PythonPackage):
|
2016-11-12 11:16:30 +08:00
|
|
|
"""Measures number of Terminal column cells of wide-character codes"""
|
|
|
|
|
|
|
|
homepage = "https://pypi.python.org/pypi/wcwidth"
|
|
|
|
url = "https://pypi.io/packages/source/w/wcwidth/wcwidth-0.1.7.tar.gz"
|
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('0.1.7', sha256='3df37372226d6e63e1b1e1eda15c594bca98a22d33a23832a90998faa96bc65e')
|
2016-11-12 11:16:30 +08:00
|
|
|
|
|
|
|
depends_on('py-setuptools', type='build')
|