forked from spack/spack
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add package py-transonic (spack#46234)
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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("[email protected]:", type=("build", "run")) | ||
depends_on("py-pdm-backend", type="build") | ||
|
||
with default_args(type="run"): | ||
depends_on("py-numpy") | ||
depends_on("[email protected]") | ||
depends_on("[email protected]") | ||
depends_on("py-autopep8") |