guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/06: gnu: Add python-kneed.


From: guix-commits
Subject: 04/06: gnu: Add python-kneed.
Date: Fri, 6 May 2022 04:17:57 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 471f6504983c7bd266603512910b9445c995e5e5
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Thu May 5 23:22:50 2022 +0200

    gnu: Add python-kneed.
    
    * gnu/packages/python-xyz.scm (python-kneed): New variable.
---
 gnu/packages/python-xyz.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index aa74063ace..4b23dac960 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19337,6 +19337,26 @@ multitouch applications.")
     (description "This package provides a MediaWiki API client.")
     (license license:expat)))
 
+(define-public python-kneed
+  (package
+    (name "python-kneed")
+    (version "0.7.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "kneed" version))
+       (sha256
+        (base32 "0vkwi0pr7nfkp3c46hnmx0275yx68v96v10rmspv0wis33x6f39l"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     (list python-matplotlib python-numpy python-scipy))
+    (home-page "https://github.com/arvkevi/kneed";)
+    (synopsis "Knee-point detection in Python")
+    (description "This package implements the kneedle algorithm.  Given a set
+of x and y values, kneed will return the knee point of the function.  The knee
+point is the point of maximum curvature.")
+    (license license:bsd-3)))
+
 (define-public python-utils
   (package
     (name "python-utils")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]