diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-02 11:31:38 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-30 19:32:18 +0000 |
commit | debee8afe9be2bb22b5c46db19939abd95c50ef1 (patch) | |
tree | 7ef56a116551bb27deb622256fbb1d897bf37132 /gnu/packages | |
parent | 2d7596d53d2478f4b26ee0920073b60542d3e946 (diff) | |
download | guix-debee8afe9be2bb22b5c46db19939abd95c50ef1.tar guix-debee8afe9be2bb22b5c46db19939abd95c50ef1.tar.gz |
gnu: Add python-getdist.
* gnu/packages/statistics.scm (python-getdist): New variable.
Change-Id: I5b5a75cd8be7e7f6bcb6c3b05d841ff78c773f57
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/statistics.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 75b1a17a61..7089030fcc 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -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") |