gnu: python-statsmodels: Fix build

* gnu/packages/statistics.scm (python-statsmodels): [check] set
  PYTHONPATH prior to running tests.
This commit is contained in:
Hartmut Goebel 2016-10-16 18:40:58 +02:00
parent d5e41cf28c
commit 25b2c47d75
No known key found for this signature in database
GPG key ID: 634A8DFFD3F631DF

View file

@ -1444,11 +1444,13 @@ (define-public python-statsmodels
line)))
#t))
(add-after 'install 'check
(lambda _
(with-directory-excursion "/tmp"
(zero? (system* "nosetests"
"--stop"
"-v" "statsmodels"))))))))
(lambda* (#:key inputs outputs #:allow-other-keys)
;; Make installed package available for running the tests
(add-installed-pythonpath inputs outputs)
(with-directory-excursion "/tmp"
(zero? (system* "nosetests"
"--stop"
"-v" "statsmodels"))))))))
(propagated-inputs
`(("python-numpy" ,python-numpy)
("python-scipy" ,python-scipy)