gnu: Add python-getdist.

* gnu/packages/statistics.scm (python-getdist): New variable.

Change-Id: I5b5a75cd8be7e7f6bcb6c3b05d841ff78c773f57
This commit is contained in:
Sharlatan Hellseher 2024-10-02 11:31:38 +01:00
parent 2d7596d53d
commit debee8afe9
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -2157,6 +2157,32 @@ and Vega-Lite examples.")
"Vega-Altair is a declarative statistical visualization library for Python.")
(license license:expat)))
(define-public python-getdist
(package
(name "python-getdist")
(version "1.5.3")
(source
(origin
(method url-fetch)
(uri (pypi-uri "getdist" version))
(sha256
(base32 "0hqq6zdm9byalypgb47ifxv67q1xgfgiq5aw0md2jndla4b546bq"))))
(build-system pyproject-build-system)
(native-inputs
(list python-pytest))
(propagated-inputs
(list python-matplotlib
python-numpy
python-packaging
python-pyyaml
python-scipy))
(home-page "https://github.com/cmbant/getdist")
(synopsis "GetDist Monte Carlo sample analysis, plotting and GUI")
(description
"GetDist is a Python package for analysing Monte Carlo samples, including
correlated samples from Markov Chain Monte Carlo (MCMC).")
(license license:lgpl3)))
(define-public python-hdmedians
(package
(name "python-hdmedians")