diff options
| author | Vinicius Monego <monego@posteo.net> | 2025-08-29 19:41:14 -0300 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-30 15:09:34 +0000 |
| commit | 5e769f095f6d8b495fd60c45638e591093f7279e (patch) | |
| tree | 68da83509d5e85d728aa190f62134dfd9c4e0443 /gnu/packages/python-science.scm | |
| parent | e7d2cb411bac9dc58b5066799f6930b7bcb13986 (diff) | |
gnu: Add python-jacobi.
* gnu/packages/python-science.scm (python-jacobi): New variable.
Change-Id: I1db0a588789c0cb6c79d298f97b71ee7958eab39
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-science.scm')
| -rw-r--r-- | gnu/packages/python-science.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 55b20ab55bf..49e44683ab8 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -1595,6 +1595,31 @@ Features: @end itemize") (license license:bsd-2))) +(define-public python-jacobi + (package + (name "python-jacobi") + (version "0.9.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "jacobi" version)) + (sha256 + (base32 "0a08680q6rnl6b1azq0lzd8r08pgnjd9ynwivb1g2vi4ccb4h7y1")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest + python-pytest-benchmark + python-setuptools + python-setuptools-scm)) + (propagated-inputs + (list python-numpy)) + (home-page "https://github.com/hdembinski/jacobi") + (synopsis "Compute numerical derivatives") + (description + "This package provides fast numerical derivatives for analytic +functions with arbitrary round-off error and error propagation.") + (license license:expat))) + (define-public python-legendkit (package (name "python-legendkit") |
