build-system/python: Add handling of 'propagated-inputs' in

'package-with-explicit-python'.

* guix/build-system/python.scm (package-with-explicit-python): Add mapping for
  'propagated-inputs'.
master
Federico Beffa 2014-12-08 09:45:46 +01:00
parent 01480b9e1c
commit c3ea85d110
1 changed files with 2 additions and 0 deletions

View File

@ -86,6 +86,8 @@ prepended to the name."
arguments)))
(inputs
(map rewrite (package-inputs p)))
(propagated-inputs
(map rewrite (package-propagated-inputs p)))
(native-inputs
(map rewrite (package-native-inputs p))))))