new package: py-pytaridx (#30444)

* new package: pytaridx

* fixed copyright year

* Update git link

Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>

* added type in python depends

* added pypi link

* Update package.py

* Update package.py

Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
This commit is contained in:
Harsh Bhatia 2022-05-03 21:10:49 -07:00 committed by GitHub
parent 157ee3458f
commit 17c1808ef7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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')