diff options
author | Pierre Augier <pierre.augier@univ-grenoble-alpes.fr> | 2024-09-09 03:03:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-08 20:03:09 -0500 |
commit | cb47c5f0acad02a67839b67ad0db73f73cf1722e (patch) | |
tree | 2c20f7382cc0503de9d0ba8ed478d6714b0aeb5d | |
parent | 32727087f10c9dfc276bec577821deb4bc543a2a (diff) | |
download | spack-cb47c5f0acad02a67839b67ad0db73f73cf1722e.tar.gz spack-cb47c5f0acad02a67839b67ad0db73f73cf1722e.tar.bz2 spack-cb47c5f0acad02a67839b67ad0db73f73cf1722e.tar.xz spack-cb47c5f0acad02a67839b67ad0db73f73cf1722e.zip |
Add package py-transonic (#46234)
-rw-r--r-- | var/spack/repos/builtin/packages/py-transonic/package.py | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-transonic/package.py b/var/spack/repos/builtin/packages/py-transonic/package.py new file mode 100644 index 0000000000..01772b1c56 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-transonic/package.py @@ -0,0 +1,28 @@ +# 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 PyTransonic(PythonPackage): + """Make your Python code fly at transonic speeds!""" + + pypi = "transonic/transonic-0.7.2.tar.gz" + + maintainers("paugier") + + license("BSD-3-Clause", checked_by="paugier") + + version("0.7.2", sha256="d0c39c13b535df4f121a8a378efc42e3d3bf4e49536d131e6d26e9fe7d5a5bf4") + version("0.7.1", sha256="dcc59f1936d09129c800629cd4e6812571a74afe40dadd8193940b545e6ef03e") + + depends_on("python@3.9:", type=("build", "run")) + depends_on("py-pdm-backend", type="build") + + with default_args(type="run"): + depends_on("py-numpy") + depends_on("py-beniget@0.4") + depends_on("py-gast@0.5") + depends_on("py-autopep8") |