me
/
guix
Archived
1
0
Fork 0

gnu: python-scikit-learn: Make python-joblib a propagated input.

* gnu/packages/machine-learning.scm (python-scikit-learn)
[native-inputs]: Move 'python-joblib' to ...
[propagated-inputs]: ... here.

Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com>
master
Konrad Hinsen 2020-04-24 14:36:20 +02:00 committed by Mathieu Othacehe
parent b3cf5f8601
commit d9e9a26176
No known key found for this signature in database
GPG Key ID: 8354763531769CA6
1 changed files with 4 additions and 3 deletions

View File

@ -13,6 +13,7 @@
;;; Copyright © 2019 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;; Copyright © 2019 Guillaume Le Vaillant <glv@posteo.net>
;;; Copyright © 2019 Brett Gilio <brettg@gnu.org>
;;; Copyright © 2020 Konrad Hinsen <konrad.hinsen@fastmail.net>
;;;
;;; This file is part of GNU Guix.
;;;
@ -835,13 +836,13 @@ computing environments.")
(inputs
`(("openblas" ,openblas)))
(native-inputs
`(("python-joblib" ,python-joblib)
("python-pytest" ,python-pytest)
`(("python-pytest" ,python-pytest)
("python-pandas" ,python-pandas) ;for tests
("python-cython" ,python-cython)))
(propagated-inputs
`(("python-numpy" ,python-numpy)
("python-scipy" ,python-scipy)))
("python-scipy" ,python-scipy)
("python-joblib" ,python-joblib)))
(home-page "https://scikit-learn.org/")
(synopsis "Machine Learning in Python")
(description