New package: py-jamo (#29545)

* [py-jamo] created template

* [py-jamo]

- added homepage
- added dependencies
- added description
- removed fixmes
This commit is contained in:
Jen Herting 2022-04-02 02:06:31 -04:00 committed by GitHub
parent a53ffbd621
commit 5874d1fbd8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,20 @@
# 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 PyJamo(PythonPackage):
"""Python-jamo is a Python Hangul syllable decomposition
and synthesis library for working with Hangul characters
and jamo."""
homepage = "https://github.com/jdongian/python-jamo"
pypi = "jamo/jamo-0.4.1.tar.gz"
version('0.4.1', sha256='ea65cf9d35338d0e0af48d75ff426d8a369b0ebde6f07051c3ac37256f56d025')
depends_on('python@3:', type=('build', 'run'))
depends_on('py-setuptools', type='build')