diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2016-05-18 10:52:41 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2016-05-18 10:52:41 +0300 |
commit | dbd40ac19df16bb2ef0387c5fcbe8103b6b64840 (patch) | |
tree | 645087c5108b1f96d2ea68575fd60cfc4aa698ca /gnu | |
parent | f1876bfc7a7dcb9516fff1b2c82f3c52b16c2ab5 (diff) | |
download | guix-dbd40ac19df16bb2ef0387c5fcbe8103b6b64840.tar guix-dbd40ac19df16bb2ef0387c5fcbe8103b6b64840.tar.gz |
gnu: python2-pandas: Fix native-inputs.
* gnu/packages/python.scm (python2-pandas)[native-inputs]: Use python2-
versions of python-panda's native-inputs, not of inputs.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 6eb244356b..1929f83a16 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -1017,7 +1017,7 @@ doing practical, real world data analysis in Python.") (package (inherit base) (native-inputs `(("python2-setuptools" ,python2-setuptools) - ,@(package-inputs base)))))) + ,@(package-native-inputs base)))))) (define-public python-tzlocal (package |