Add new package py-jmespath (#11719)

This commit is contained in:
Adam J. Stewart 2019-06-16 01:42:36 -05:00 committed by Greg Becker
parent 07a90b214b
commit 2a15ab42fe

View File

@ -0,0 +1,20 @@
# Copyright 2013-2019 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 PyJmespath(PythonPackage):
"""JSON Matching Expressions."""
homepage = "https://github.com/jmespath/jmespath.py"
url = "https://pypi.io/packages/source/j/jmespath/jmespath-0.9.4.tar.gz"
import_modules = ['jmespath']
version('0.9.4', sha256='bde2aef6f44302dfb30320115b17d030798de8c4110e28d5cf6cf91a7a31074c')
depends_on('py-setuptools', type='build')
depends_on('py-nose', type='test')