mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 07:12:30 -05:00
gnu: Add python-salib.
* gnu/packages/python-science.scm (python-salib): New variable.
This commit is contained in:
parent
9642b1c7af
commit
a7d56852e3
1 changed files with 27 additions and 0 deletions
|
@ -2030,6 +2030,33 @@ (define-public python-vaex-core
|
||||||
tabular datasets. This package provides the core modules of Vaex.")
|
tabular datasets. This package provides the core modules of Vaex.")
|
||||||
(license license:expat)))
|
(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
|
(define-public python-pylems
|
||||||
(package
|
(package
|
||||||
(name "python-pylems")
|
(name "python-pylems")
|
||||||
|
|
Loading…
Reference in a new issue