summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-pypinyin/package.py
blob: 39a9937d4e484058f8881b1a7ffd264dc08fac4b (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-2022 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")
    depends_on("py-argparse", type=("build", "run"), when="^python@:2.6")
    depends_on("py-enum34", type=("build", "run"), when="^python@:3.3")
    depends_on("py-typing", type=("build", "run"), when="^python@:3.4")