mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add python-formulaic.
* gnu/packages/python-science.scm (python-formulaic): New variable. Change-Id: Ib21bfdc3050c042abc7494501d7b0409be8ed3bb
This commit is contained in:
parent
75ebca9e8f
commit
385b08370a
1 changed files with 26 additions and 0 deletions
|
@ -142,6 +142,32 @@ (define-public python-ecos
|
|||
numerical software for solving convex second-order cone programs (SOCPs).")
|
||||
(license license:gpl3)))
|
||||
|
||||
(define-public python-formulaic
|
||||
(package
|
||||
(name "python-formulaic")
|
||||
(version "1.0.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "formulaic" version))
|
||||
(sha256
|
||||
(base32 "18gvd3f2x358jj0df8vx5fhhnvzw047rsrs03vmvqnxaly97kpb4"))))
|
||||
(build-system pyproject-build-system)
|
||||
(propagated-inputs (list python-astor
|
||||
python-cached-property
|
||||
python-interface-meta
|
||||
python-numpy
|
||||
python-pandas
|
||||
python-scipy
|
||||
python-typing-extensions
|
||||
python-wrapt))
|
||||
(native-inputs (list python-hatchling python-hatch-vcs python-pytest))
|
||||
(home-page "https://github.com/matthewwardrop/formulaic")
|
||||
(synopsis "Implementation of Wilkinson formulas")
|
||||
(description "Formulaic is a high-performance implementation of Wilkinson
|
||||
formulas for Python.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-osqp
|
||||
(package
|
||||
(name "python-osqp")
|
||||
|
|
Loading…
Reference in a new issue