New package: py-pypinyin (#29547)
* [py-pypinyin] created template * [py-pypinyin] - added homepage - added dependencies - removed some fixmes * [py-pypinyin] added description
This commit is contained in:
parent
768c35dd23
commit
c99b3c31db
21
var/spack/repos/builtin/packages/py-pypinyin/package.py
Normal file
21
var/spack/repos/builtin/packages/py-pypinyin/package.py
Normal file
@ -0,0 +1,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 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')
|
Loading…
Reference in New Issue
Block a user