3
4
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: python2-statsmodels: Downgrade to 0.9.0.

* gnu/packages/statistics.scm (python2-statsmodels): Downgrade to 0.9.0.
This commit is contained in:
Ricardo Wurmus 2021-12-02 18:31:38 +01:00
parent 31d372cd8a
commit f28f5be11d
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -1998,6 +1998,16 @@ inference for statistical models.")
(define-public python2-statsmodels
(let ((stats (package-with-python2 python-statsmodels)))
(package/inherit stats
;; Version 0.11.1 and later does not work with Python 2. It may build
;; fine but loading modules fails.
(version "0.9.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "statsmodels" version))
(sha256
(base32
"0fxs8a7sp4d7jvqlm36yi45i2d28kjfvraf9q8i9jr1chhxgjqb4"))))
(propagated-inputs
`(("python2-pytz" ,python2-pytz)
("python2-numpy" ,python2-numpy)