py-sphobjinv: add new package (#24790)

This commit is contained in:
Adam J. Stewart 2021-07-12 06:40:32 -05:00 committed by GitHub
parent 4c7aed5d57
commit 872785db16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,22 @@
# 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 PySphobjinv(PythonPackage):
"""Sphinx objects.inv Inspection/Manipulation Tool."""
homepage = "https://github.com/bskinn/sphobjinv"
url = "https://github.com/bskinn/sphobjinv/archive/refs/tags/v2.1.tar.gz"
version('2.1', sha256='e41950a578dfd5acae24f12c7fe12b8d5e44f9162487aaa27189ca2e5c45d30c')
depends_on('python@3.6:', type=('build', 'run'))
depends_on('py-setuptools', type=('build', 'run'))
depends_on('py-attrs@19.2:', type=('build', 'run'))
depends_on('py-certifi', type=('build', 'run'))
depends_on('py-fuzzywuzzy@0.8:', type=('build', 'run'))
depends_on('py-jsonschema@3.0:', type=('build', 'run'))