summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-jaconv/package.py
blob: e92160bbe1353ef9f3edc5887040c766ee9bcce7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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 PyJaconv(PythonPackage):
    """jaconv (Japanese Converter) is interconverter for
    Hiragana, Katakana, Hankaku (half-width character) and
    Zenkaku (full-width character)"""

    homepage = "https://github.com/ikegami-yukino/jaconv"
    pypi = "jaconv/jaconv-0.3.tar.gz"

    license("MIT")

    version("0.3", sha256="cc70c796c19a6765598c03eac59d1399a555a9a8839cc70e540ec26f0ec3e66e")

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