summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGhislain Vaillant <ghislain.vaillant@inria.fr>2026-06-29 10:42:06 +0200
committerGhislain Vaillant <ghislain.vaillant@inria.fr>2026-06-29 15:30:11 +0200
commit080c2af49fc0a2ed72f95330211e6b80abd69538 (patch)
tree44d8370af1f2d16c29da412f89214a7d17266088
parentc14f023a4c34946e158c46a84ce6c1cb58c3cbd4 (diff)
time-series: Add python-nolds.
* guix-science/packages/time-series.scm (python-nolds): New variable.
-rw-r--r--guix-science/packages/time-series.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/guix-science/packages/time-series.scm b/guix-science/packages/time-series.scm
index b004441..f3e6c31 100644
--- a/guix-science/packages/time-series.scm
+++ b/guix-science/packages/time-series.scm
@@ -185,6 +185,30 @@ retraining or modications.")
185and related spectral analyses.") 185and related spectral analyses.")
186 (license license:gpl3+))) 186 (license license:gpl3+)))
187 187
188(define-public python-nolds
189 (package
190 (name "python-nolds")
191 (version "0.6.3")
192 (source
193 (origin
194 (method git-fetch)
195 (uri (git-reference
196 (url "https://github.com/CSchoel/nolds")
197 (commit version)))
198 (file-name (git-file-name name version))
199 (sha256
200 (base32 "0fgwr91ic0paan5ng5xda3bbgl7aqcmbp6mlzxdg263r75hkbbkb"))))
201 (build-system pyproject-build-system)
202 (propagated-inputs (list python-future python-numpy))
203 (native-inputs (list python-pytest python-setuptools))
204 (home-page "https://nolds.readthedocs.io/")
205 (synopsis "Nonlinear measures for dynamical systems")
206 (description
207 "Nolds is a small numpy-based library that provides an implementation and a
208learning resource for nonlinear measures for dynamical systems based on
209one-dimensional time series.")
210 (license license:expat)))
211
188(define-public python-pycatch22 212(define-public python-pycatch22
189 (package 213 (package
190 (name "python-pycatch22") 214 (name "python-pycatch22")