add package py-jacobi (#42672)
* add package py-jacobi * fix: add description * fix: add description * fix: add description * [@spackbot] updating style on behalf of jonas-eschle * Update package.py * Update package.py * Update var/spack/repos/builtin/packages/py-jacobi/package.py I don't think that numpy is used in "build"? But not important Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> --------- Co-authored-by: jonas-eschle <jonas-eschle@users.noreply.github.com> Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
This commit is contained in:
parent
fd10cfdebf
commit
5949fc2c88
1 changed files with 24 additions and 0 deletions
24
var/spack/repos/builtin/packages/py-jacobi/package.py
Normal file
24
var/spack/repos/builtin/packages/py-jacobi/package.py
Normal file
|
@ -0,0 +1,24 @@
|
|||
# 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 PyJacobi(PythonPackage):
|
||||
"""Fast numerical derivatives for analytic functions
|
||||
with arbitrary round-off error and error propagation."""
|
||||
|
||||
homepage = "https://github.com/hdembinski/jacobi"
|
||||
pypi = "jacobi/jacobi-0.9.2.tar.gz"
|
||||
|
||||
maintainers("jonas-eschle")
|
||||
license("MIT", checked_by="jonas-eschle")
|
||||
|
||||
version("0.9.2", sha256="c11f481663246ef1c2da915b9f9ab4ef229051fb14e0afc232d4668301320828")
|
||||
|
||||
depends_on("python@3.8:", type=("build", "run"))
|
||||
depends_on("py-setuptools@42:", type="build")
|
||||
depends_on("py-setuptools-scm@3.4:+toml", type="build")
|
||||
depends_on("py-numpy", type=("build", "run"))
|
Loading…
Reference in a new issue