1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-06 17:25:56 +02:00

gnu: python-kneed: Update to 0.8.5.

* gnu/packages/python-xyz.scm (python-kneed): Update to 0.8.5.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-hatchling, python-pytest-cov.
[description]: Improve style.

Change-Id: I600f92e885a1480665d941749836578cf9a47035
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Nicolas Graves
2025-10-25 17:22:49 +02:00
committed by Sharlatan Hellseher
parent 93fccc9577
commit bebb4ca6d5
+17 -10
View File
@@ -24851,21 +24851,28 @@ applications in seconds while maintaining all the flexibility.")
(define-public python-kneed
(package
(name "python-kneed")
(version "0.7.0")
(version "0.8.5")
(source
(origin
(method url-fetch)
(uri (pypi-uri "kneed" version))
(method git-fetch)
(uri (git-reference
(url "https://github.com/arvkevi/kneed")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0vkwi0pr7nfkp3c46hnmx0275yx68v96v10rmspv0wis33x6f39l"))))
(build-system python-build-system)
(propagated-inputs
(list python-matplotlib python-numpy python-scipy))
(base32 "0kcglaql1nqvjv5q62myybznii1n1akln5yacp63rg8xv7l0zad1"))))
(build-system pyproject-build-system)
(arguments
(list
#:test-flags #~(list "--ignore=tests/test_no_matplotlib.py")))
(native-inputs (list python-hatchling python-pytest python-pytest-cov))
(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.")
(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-diff-cover