diff options
| author | Vinicius Monego <monego@posteo.net> | 2026-03-29 09:14:05 -0300 |
|---|---|---|
| committer | Vinicius Monego <monego@posteo.net> | 2026-03-30 20:59:38 -0300 |
| commit | 7eb217dc9906a0d7d950d9473f129a3fc4d4f4b3 (patch) | |
| tree | b95f31af38704d480bea4686f0a495907c2964d1 /gnu/packages | |
| parent | feab14f628190f5e8e18bcc48eac0f2eb4169e3d (diff) | |
gnu: Add python-numbagg.
* gnu/packages/python-science.scm (python-numbagg): New variable.
Change-Id: I49856891cdbfc3f85c0753d5d3ea344c58ac4565
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/python-science.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 5fbd5114728..b45c6e36be6 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -2134,6 +2134,35 @@ The supported distributions are: @end itemize") (license license:expat))) +(define-public python-numbagg + (package + (name "python-numbagg") + (version "0.9.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/numbagg/numbagg") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1frx10rdyklp0zbd8bckl63i0vmj0z93nkx1i7dylbv99iw27215")))) + (build-system pyproject-build-system) + (propagated-inputs (list python-numba python-numpy)) + (native-inputs (list python-bottleneck + python-pandas + python-pytest + python-pytest-benchmark ; runs by default + python-setuptools + python-setuptools-scm + python-tabulate)) + (home-page "https://github.com/numbagg/numbagg") + (synopsis "Fast N-dimensional aggregation functions with Numba") + (description "Numbagg provides high-performance implementations for moving +window, aggregation, and grouping functions. It leverages Numba's JIT +compilation and is especially performant on multi-core parallelism.") + (license license:bsd-3))) + (define-public python-numdifftools (package (name "python-numdifftools") |
