summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-grapheme/package.py
blob: 2670c50dc58d61687a661f2f1cf4ee0d936636a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copyright 2013-2024 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.package import *


class PyGrapheme(PythonPackage):
    """A Python package for working with user perceived characters. More
    specifically, string manipulation and calculation functions for working
    with grapheme cluster groups (graphemes) as defined by the
    Unicode Standard Annex #29."""

    homepage = "https://github.com/alvinlindstam/grapheme"
    pypi = "grapheme/grapheme-0.6.0.tar.gz"

    license("MIT")

    version("0.6.0", sha256="44c2b9f21bbe77cfb05835fec230bd435954275267fea1858013b102f8603cca")

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