mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add python-supersmoother.
* gnu/packages/python-science.scm (python-supersmoother): New variable. Change-Id: I8fb43d746757014e3b773c07458b777b893adb4a
This commit is contained in:
parent
fc92d33932
commit
8cea282efe
1 changed files with 25 additions and 0 deletions
|
@ -2607,6 +2607,31 @@ interoperability offered by HDF5.")
|
||||||
proportional-integral-derivative} controller.")
|
proportional-integral-derivative} controller.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python-supersmoother
|
||||||
|
(package
|
||||||
|
(name "python-supersmoother")
|
||||||
|
(version "0.4")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch) ; no package in PyPI
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/jakevdp/supersmoother")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1lkj8l2mpki6x2pxcwlrplx63lhi8h9v2rzxgjfb0cppsfr8m1wp"))))
|
||||||
|
(build-system pyproject-build-system)
|
||||||
|
(propagated-inputs (list python-numpy))
|
||||||
|
(native-inputs (list python-scipy))
|
||||||
|
(home-page "http://github.com/jakevdp/supersmoother")
|
||||||
|
(synopsis "Python implementation of Friedman's Supersmoother")
|
||||||
|
(description
|
||||||
|
"This package provides an efficient implementation of
|
||||||
|
@url{https://www.slac.stanford.edu/pubs/slacpubs/3250/slac-pub-3477.pdf,
|
||||||
|
Friedman's SuperSmoother} based in Python. It makes use of numpy for fast
|
||||||
|
numerical computation.")
|
||||||
|
(license license:bsd-2)))
|
||||||
|
|
||||||
(define-public python-opt-einsum
|
(define-public python-opt-einsum
|
||||||
(package
|
(package
|
||||||
(name "python-opt-einsum")
|
(name "python-opt-einsum")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue