From 385b08370a5671a6e66592715a4c05527c71dc0c Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Sun, 16 Jun 2024 22:48:27 +0200 Subject: gnu: Add python-formulaic. * gnu/packages/python-science.scm (python-formulaic): New variable. Change-Id: Ib21bfdc3050c042abc7494501d7b0409be8ed3bb --- gnu/packages/python-science.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 30f540e05b..58b7f3b3ee 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -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") -- cgit v1.2.3