summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-pypinyin/package.py
blob: f3aeb6696e5a5e32f2cb98526c1f8dda800bfb58 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright 2013-2023 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 PyPypinyin(PythonPackage):
    """Chinese Pinyin conversion module/tool."""

    homepage = "https://github.com/mozillazg/python-pinyin"
    pypi = "pypinyin/pypinyin-0.46.0.tar.gz"

    version("0.46.0", sha256="0d2e41e95dbc20a232c0f5d3850654eebbfcba303d96358d2c46592725bb989c")

    depends_on("python@2.6:2,3.3:3", type=("build", "run"))
    depends_on("py-setuptools", type="build")