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>
This commit is contained in:
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

View file

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