guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

13/17: gnu: Add python-ndim.


From: guix-commits
Subject: 13/17: gnu: Add python-ndim.
Date: Mon, 4 Dec 2023 16:50:35 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit eede7fe00b0ab257281a526fa51ced266fbf5493
Author: Felix Gruber <felgru@posteo.net>
AuthorDate: Sat Nov 4 15:02:37 2023 +0000

    gnu: Add python-ndim.
    
    * gnu/packages/maths.scm (python-ndim): New variable.
    
    Change-Id: I543f1f5e195f4f2fd5bd70f9ce29ec750a24439b
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/maths.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 2769c4f6ec..c13be6feb1 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -164,6 +164,7 @@
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages pulseaudio)
   #:use-module (gnu packages python)
+  #:use-module (gnu packages python-build)
   #:use-module (gnu packages python-web)
   #:use-module (gnu packages python-xyz)
   #:use-module (gnu packages qt)
@@ -3691,6 +3692,30 @@ and (dot) products.  It implements Kahan summation, 
Shewchuck's
 algorithm and summation in K-fold precision.")
     (license license:gpl3+)))
 
+(define-public python-ndim
+  (package
+    (name "python-ndim")
+    (version "0.1.6")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/diego-hayashi/ndim";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1hri82k7pcpw9dns8l1f2asa3dm7hjv71wnxi3752258ia2qa44v"))))
+    (build-system pyproject-build-system)
+    (propagated-inputs (list python-sympy))
+    (native-inputs (list python-flit-core python-pytest))
+    (home-page "https://github.com/diego-hayashi/ndim";)
+    (synopsis "Multidimensional volumes and monomial integrals")
+    (description
+      "@code{ndim} computes all kinds of volumes and integrals of
+monomials over such volumes in a fast, numerically stable way, using
+recurrence relations.")
+    (license license:gpl3+)))
+
 (define-public slepc
   (package
     (name "slepc")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]