diff options
author | Jen Herting <jen@herting.cc> | 2024-09-22 11:42:12 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-22 17:42:12 +0200 |
commit | 315f3a0b4dbc0301147172ba21f9425b2ab73b4c (patch) | |
tree | 34f81a3a91dda6c0f41dc57ec66123e80a71add6 | |
parent | 3a353c2a043ee8e6ca0121e8f95bb77ddcad0eed (diff) | |
download | spack-315f3a0b4dbc0301147172ba21f9425b2ab73b4c.tar.gz spack-315f3a0b4dbc0301147172ba21f9425b2ab73b4c.tar.bz2 spack-315f3a0b4dbc0301147172ba21f9425b2ab73b4c.tar.xz spack-315f3a0b4dbc0301147172ba21f9425b2ab73b4c.zip |
py-jiter: new package (#46308)
-rw-r--r-- | var/spack/repos/builtin/packages/py-jiter/package.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-jiter/package.py b/var/spack/repos/builtin/packages/py-jiter/package.py new file mode 100644 index 0000000000..466dff204c --- /dev/null +++ b/var/spack/repos/builtin/packages/py-jiter/package.py @@ -0,0 +1,21 @@ +# Copyright 2013-2024 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 PyJiter(PythonPackage): + """Fast iterable JSON parser.""" + + homepage = "https://github.com/pydantic/jiter/" + pypi = "jiter/jiter-0.5.0.tar.gz" + + license("MIT", checked_by="qwertos") + + version("0.5.0", sha256="1d916ba875bcab5c5f7d927df998c4cb694d27dceddf3392e58beaf10563368a") + + depends_on("python@3.8:", type=("build", "run")) + depends_on("py-maturin@1", type="build") + depends_on("rust@1.73:", type=("build", "run")) |