guix-commits
[Top][All Lists]
Advanced

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

04/08: gnu: Add python-salib.


From: guix-commits
Subject: 04/08: gnu: Add python-salib.
Date: Fri, 3 Nov 2023 18:30:14 -0400 (EDT)

monego pushed a commit to branch master
in repository guix.

commit a7d56852e3c177db614aebc1934b00ee17014472
Author: Vinicius Monego <monego@posteo.net>
AuthorDate: Sat Oct 7 00:08:57 2023 -0300

    gnu: Add python-salib.
    
    * gnu/packages/python-science.scm (python-salib): New variable.
---
 gnu/packages/python-science.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index efddd060a4..655bd2e942 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -2030,6 +2030,33 @@ Out-of-Core DataFrames (similar to Pandas), to visualize 
and explore big
 tabular datasets.  This package provides the core modules of Vaex.")
     (license license:expat)))
 
+(define-public python-salib
+  (package
+    (name "python-salib")
+    (version "1.4.7")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/SALib/SALib";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "18xfyzircsx2q2lmfc9lxb6xvkxicnc83qzghd7df1jsprr5ymch"))))
+    (build-system pyproject-build-system)
+    (propagated-inputs (list python-matplotlib
+                             python-multiprocess
+                             python-numpy
+                             python-pandas
+                             python-scipy))
+    (native-inputs (list python-hatchling python-pytest python-pytest-cov))
+    (home-page "https://salib.readthedocs.io/en/latest/";)
+    (synopsis "Tools for global sensitivity analysis")
+    (description "SALib provides tools for global sensitivity analysis.  It
+contains Sobol', Morris, FAST, DGSM, PAWN, HDMR, Moment Independent and
+fractional factorial methods.")
+    (license license:expat)))
+
 (define-public python-pylems
   (package
     (name "python-pylems")



reply via email to

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