me
/
guix
Archived
1
0
Fork 0

gnu: python2-pandas: Use custom 'python2-numpy'.

* gnu/packages/python.scm (python2-pandas): Do it.
master
Federico Beffa 2015-12-03 08:52:46 +01:00
parent 5587253a87
commit 3cbe7d5e52
1 changed files with 6 additions and 1 deletions

View File

@ -1016,7 +1016,12 @@ doing practical, real world data analysis in Python.")
(license bsd-3)))
(define-public python2-pandas
(package-with-python2 python-pandas))
(let ((pandas (package-with-python2 python-pandas)))
(package (inherit pandas)
(propagated-inputs
`(("python2-numpy" ,python2-numpy)
,@(alist-delete "python-numpy"
(package-propagated-inputs pandas)))))))
(define-public python-tzlocal
(package