blob: a065a089b17509ced274840aff443ab2c58ea953 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
numpy,
scipy,
matplotlib,
pytestCheckHook,
pytest-cov-stub,
}:
buildPythonPackage rec {
pname = "kneed";
version = "0.8.5";
pyproject = true;
src = fetchFromGitHub {
owner = "arvkevi";
repo = "kneed";
tag = "v${version}";
sha256 = "sha256-oakP6NkdvTzMZcoXS6cKNsRo//K+CoPLlhvbQLGij00=";
};
build-system = [ hatchling ];
dependencies = [
numpy
scipy
];
checkInputs = [
pytestCheckHook
pytest-cov-stub
matplotlib
];
disabledTestPaths = [
# Fails when matplotlib is installed
"tests/test_no_matplotlib.py"
];
meta = {
description = "Knee point detection in Python";
homepage = "https://github.com/arvkevi/kneed";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ tm-drtina ];
};
}
|