summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--var/spack/repos/builtin/packages/py-pytaridx/package.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pytaridx/package.py b/var/spack/repos/builtin/packages/py-pytaridx/package.py
new file mode 100644
index 0000000000..14cf9f252b
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-pytaridx/package.py
@@ -0,0 +1,24 @@
+# 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 PyPytaridx(PythonPackage):
+ """Python module/library for creating and maintaining a rapidly searchable
+ index for a tar-file. This allows "direct access" of members (files) in
+ the tar archive."""
+
+ homepage = "https://github.com/LLNL/pytaridx"
+ git = "https://github.com/LLNL/pytaridx.git"
+ pypi = "pytaridx/pytaridx-1.0.2.tar.gz"
+
+ maintainers = ['bhatiaharsh']
+
+ version('1.0.2', sha26='702c42ade13ae8688a56a8edfcd7e0e7512a489a22796c6cfdbcef677010ee47')
+ version('master', branch='master')
+
+ depends_on('python@3:', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')