summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-wcwidth/package.py
blob: 4bb68362a766da34b677cee1046ed9f32e0e47c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Copyright 2013-2018 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 PyWcwidth(PythonPackage):
    """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"

    version('0.1.7', 'b3b6a0a08f0c8a34d1de8cf44150a4ad')

    depends_on('py-setuptools', type='build')