From 7eb217dc9906a0d7d950d9473f129a3fc4d4f4b3 Mon Sep 17 00:00:00 2001 From: Vinicius Monego Date: Sun, 29 Mar 2026 09:14:05 -0300 Subject: gnu: Add python-numbagg. * gnu/packages/python-science.scm (python-numbagg): New variable. Change-Id: I49856891cdbfc3f85c0753d5d3ea344c58ac4565 --- gnu/packages/python-science.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'gnu/packages/python-science.scm') 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") -- cgit v1.3