summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-json5/package.py
blob: 1a07f30788e4dc243fa5b9fa23bca7543b6899b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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.package import *


class PyJson5(PythonPackage):
    """The JSON5 Data Interchange Format (JSON5) is a superset of JSON that aims
    to alleviate some of the limitations of JSON by expanding its syntax to
    include some productions from ECMAScript 5.1."""

    homepage = "https://github.com/dpranke/pyjson5"
    pypi = "json5/json5-0.9.4.tar.gz"

    version("0.9.6", sha256="9175ad1bc248e22bb8d95a8e8d765958bf0008fef2fe8abab5bc04e0f1ac8302")
    version("0.9.4", sha256="2ebfad1cd502dca6aecab5b5c36a21c732c3461ddbc412fb0e9a52b07ddfe586")

    depends_on("py-setuptools", type=("build", "run"))