summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-ujson/package.py
blob: 44445d63f6cfe0376f371a7dda15bebc115f364f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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 PyUjson(PythonPackage):
    """Ultra fast JSON decoder and encoder written in C with Python
       bindings."""

    homepage = "https://github.com/esnme/ultrajson"
    pypi = "ujson/ujson-1.35.tar.gz"

    version('1.35', sha256='f66073e5506e91d204ab0c614a148d5aa938bdbf104751be66f8ad7a222f5f86')

    depends_on('py-setuptools', type='build')