summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorJen Herting <jen@herting.cc>2021-12-20 21:18:09 -0500
committerGitHub <noreply@github.com>2021-12-20 18:18:09 -0800
commite9edb5c96b19f6c5d25529a7e84028de09bbad62 (patch)
tree3efea5fc661d772ca06443514b6f6850aa7d0da6 /var
parent9869a2d0da5661ca18fbb02741524a19e05bb490 (diff)
downloadspack-e9edb5c96b19f6c5d25529a7e84028de09bbad62.tar.gz
spack-e9edb5c96b19f6c5d25529a7e84028de09bbad62.tar.bz2
spack-e9edb5c96b19f6c5d25529a7e84028de09bbad62.tar.xz
spack-e9edb5c96b19f6c5d25529a7e84028de09bbad62.zip
New package: py-liac-arff (#28046)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-liac-arff/package.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-liac-arff/package.py b/var/spack/repos/builtin/packages/py-liac-arff/package.py
new file mode 100644
index 0000000000..8492fd694c
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-liac-arff/package.py
@@ -0,0 +1,20 @@
+# Copyright 2013-2021 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 PyLiacArff(PythonPackage):
+ """The liac-arff module implements functions to read and
+ write ARFF files in Python."""
+
+ homepage = "https://github.com/renatopp/liac-arff"
+ pypi = "liac-arff/liac-arff-2.5.0.tar.gz"
+
+ version('2.5.0', sha256='3220d0af6487c5aa71b47579be7ad1d94f3849ff1e224af3bf05ad49a0b5c4da')
+
+ depends_on('python@2.7:2.999,3.5:', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')
+ depends_on('py-cython', type='build')