diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2024-02-22 20:47:54 +0100 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2024-06-30 09:19:47 +0200 |
commit | 35eca45e9a26a44d5e945a7eee8a15312f770d2c (patch) | |
tree | 1a4fd8fa034116798aa12e233b95a6526ce77eb1 /gnu/packages/statistics.scm | |
parent | da7edf3ccb2153f14accc3a9dfffe871d0b16279 (diff) |
gnu: Add python-setuptools/python-wheel where necessary.
Changes to pyproject-build-system require explicit dependency on
setuptools/wheel.
Change-Id: Icd7699fc1dc56e974ae7568f2ae916dbf876bea5
Diffstat (limited to 'gnu/packages/statistics.scm')
-rw-r--r-- | gnu/packages/statistics.scm | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index ba1e78e745..658970c68a 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -2311,7 +2311,8 @@ inference (VI) algorithms.") (("\"error::DeprecationWarning\",") ""))))))) (propagated-inputs (list python-importlib-metadata python-numpoly python-numpy python-scipy)) - (native-inputs (list python-pytest python-scikit-learn)) + (native-inputs (list python-pytest python-scikit-learn python-setuptools + python-wheel)) (home-page "https://chaospy.readthedocs.io/en/master/") (synopsis "Numerical tool for performing uncertainty quantification") (description "Chaospy is a numerical toolbox for performing uncertainty @@ -2404,7 +2405,8 @@ Meier, Nelson Aalen and regression.") #:test-flags '(list "-k" (string-append "not test_correct_results" " and not test_correct_results_binary")))) - (native-inputs (list python-pandas python-pytest)) + (native-inputs (list python-pandas python-pytest python-setuptools + python-wheel)) (propagated-inputs (list python-numpy python-scikit-learn)) (home-page "https://github.com/scikit-learn-contrib/MAPIE") (synopsis "Module for estimating prediction intervals") @@ -2432,7 +2434,9 @@ conformal prediction methods intervals.") (native-inputs (list python-coverage python-pytest python-pytest-cov - python-setuptools-scm)) + python-setuptools + python-setuptools-scm + python-wheel)) (home-page "https://emcee.readthedocs.io/en/stable/") (synopsis "Ensemble sampling toolkit for MCMC") (description |