guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit 39a1123e5feba51cd55991a0a72bed6c6f47e464
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Jul 12 23:12:18 2026 +0100

    gnu: Add python-fast-array-utils.
    
    * gnu/packages/python-science.scm (python-fast-array-utils): New variable.
---
 gnu/packages/python-science.scm | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index 7fdf40ccb2..423b8284dc 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -1398,6 +1398,42 @@ which uncovers hidden structures in categorical data")
 learning frameworks.")
     (license license:expat)))
 
+(define-public python-fast-array-utils
+  (package
+    (name "python-fast-array-utils")
+    (version "1.4.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/scverse/fast-array-utils";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "07qbsbsmzycxa5nib39zp7rfwcj3cvqyg4mpfkdn7xg2bmqprl7n"))))
+    (build-system pyproject-build-system)
+    (arguments
+     ;; tests: 1455 passed, 1621 skipped, 232 deselected
+     (list #:test-flags #~(list "-m" "not benchmark")))
+    (native-inputs
+     (list python-dask-minimal
+           python-hatch-docstring-description
+           python-hatch-fancy-pypi-readme
+           python-hatch-vcs
+           python-hatchling
+           python-numba
+           python-packaging
+           python-pytest
+           python-pytest-doctestplus
+           python-scipy-minimal))
+    (propagated-inputs
+     (list python-numpy))
+    (home-page "https://fast-array-utils.scverse.org/";)
+    (synopsis "Fast array utilities")
+    (description
+     "This package provides fast array utilities with minimal dependencies.")
+    (license license:mpl2.0)))
+
 (define-public python-fast-histogram
   (package
     (name "python-fast-histogram")

Reply via email to