~ruther/guix-local

b0aa6ede251709f650b30020057a86da8c636f99 — Hartmut Goebel 9 years ago 77a6932
gnu: python-numpy: Fix inputs.

This fixes 2efabc5589dc641dce75702b99253a3fb40bb2eb, where some inputs
have been changed to propagated-inputs, but the propagated-inputs are
still extended from inputs and the inputs are not extended at all.

* gnu/packages/python.scm (python-numpy, python2-numpy)[inputs]:
Extend from python-numpy-bootstrap's package-inputs. [propagated-inputs]:
Extend from python-numpy-bootstrap's package-propagated-inputs.
1 files changed, 3 insertions(+), 2 deletions(-)

M gnu/packages/python.scm
M gnu/packages/python.scm => gnu/packages/python.scm +3 -2
@@ 3261,11 3261,12 @@ association studies (GWAS) on extremely large data sets.")
    (name "python-numpy")
    (outputs '("out" "doc"))
    (inputs
     `(("which" ,which)))
     `(("which" ,which)
       ,@(package-inputs python-numpy-bootstrap)))
    (propagated-inputs
     `(("python-matplotlib" ,python-matplotlib)
       ("python-pyparsing" ,python-pyparsing)
       ,@(package-inputs python-numpy-bootstrap)))
       ,@(package-propagated-inputs python-numpy-bootstrap)))
    (native-inputs
     `(("pkg-config" ,pkg-config)
       ("python-sphinx" ,python-sphinx)