This is an automated email from the git hooks/post-receive script.

sharlatan pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 0509134547 gnu: Add python-nestle.
0509134547 is described below

commit 0509134547207c28722528ac7052b2c9bc47e964
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Mar 8 08:48:51 2025 +0000

    gnu: Add python-nestle.
    
    * gnu/packages/statistics.scm (python-nestle): New variable.
    
    Change-Id: Ic39bd9bc048007935e52898900effc65a4c55b7d
---
 gnu/packages/statistics.scm | 28 +++++++++++++++++++++++++++-
 1 file changed, 27 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 3febd29ee3..ba897fbb0d 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -22,7 +22,7 @@
 ;;; Copyright © 2023 Troy Figiel <[email protected]>
 ;;; Copyright © 2024 Vinicius Monego <[email protected]>
 ;;; Copyright © 2024 Nicolas Graves <[email protected]>
-;;; Copyright © 2024 Sharlatan Hellseher <[email protected]>
+;;; Copyright © 2024-2025 Sharlatan Hellseher <[email protected]>
 ;;; Copyright © 2025 Jonas Freimuth <[email protected]>
 ;;;
 ;;; This file is part of GNU Guix.
@@ -2339,6 +2339,32 @@ point (up to 50% contamination) and have a number of 
nice applications in
 machine learning, computer vision, and high-dimensional statistics.")
     (license license:asl2.0)))
 
+(define-public python-nestle
+  (package
+    (name "python-nestle")
+    (version "0.2.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "nestle" version))
+       (sha256
+        (base32 "0v94qcqwl519vqhd4wb1zhx4x4q9xhbck8g2h0v2n4mwxgz9irsx"))))
+    (build-system pyproject-build-system)
+    (arguments
+     (list #:tests? #f)) ; no tests in PyPI or Git
+    (native-inputs
+     (list python-setuptools
+           python-wheel))
+    (propagated-inputs
+     (list python-numpy))
+    (home-page "https://github.com/kbarbary/nestle";)
+    (synopsis "Nested sampling algorithms for evaluating Bayesian evidence")
+    (description
+     "This package provides an implementation of
+@url{https://en.wikipedia.org/wiki/Nested_sampling_algorithm, Nested Sampling}
+algorithms for evaluating Bayesian evidence.")
+    (license license:expat)))
+
 (define-public python-arviz
   (package
     (name "python-arviz")

Reply via email to