summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJen Herting <jen@herting.cc>2022-04-02 02:06:31 -0400
committerGitHub <noreply@github.com>2022-04-02 00:06:31 -0600
commit5874d1fbd870d3d11c64b297e2dbba8bdeaada06 (patch)
tree4718933f6de518901c553d619ed6146e0b38a20d
parenta53ffbd621bb8c718bb241a42542dafb8bf633ad (diff)
downloadspack-5874d1fbd870d3d11c64b297e2dbba8bdeaada06.tar.gz
spack-5874d1fbd870d3d11c64b297e2dbba8bdeaada06.tar.bz2
spack-5874d1fbd870d3d11c64b297e2dbba8bdeaada06.tar.xz
spack-5874d1fbd870d3d11c64b297e2dbba8bdeaada06.zip
New package: py-jamo (#29545)
* [py-jamo] created template * [py-jamo] - added homepage - added dependencies - added description - removed fixmes
-rw-r--r--var/spack/repos/builtin/packages/py-jamo/package.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-jamo/package.py b/var/spack/repos/builtin/packages/py-jamo/package.py
new file mode 100644
index 0000000000..3272703716
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-jamo/package.py
@@ -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')