about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/kneed/default.nix
blob: 1e4bc851968fda43351355f3f56624cb3d2b145f (plain) (blame)
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
50
51
52
53
{ lib
, buildPythonPackage
, fetchFromGitHub
, hatchling
, numpy
, scipy
, matplotlib
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "kneed";
  version = "0.8.3";
  format = "pyproject";

  src = fetchFromGitHub {
    owner = "arvkevi";
    repo = "kneed";
    rev = "v${version}";
    sha256 = "K742mOnwTUY09EtbDYM9guqszK1wxgkofPhSjDyB8Ss=";
  };

  postPatch = ''
    substituteInPlace pytest.ini \
      --replace "--cov=kneed" ""
  '';

  nativeBuildInputs = [
    hatchling
  ];

  propagatedBuildInputs = [
    numpy
    scipy
  ];

  checkInputs = [
    pytestCheckHook
    matplotlib
  ];

  disabledTestPaths = [
    # Fails when matplotlib is installed
    "tests/test_no_matplotlib.py"
  ];

  meta = with lib; {
    description = "Knee point detection in Python";
    homepage = "https://github.com/arvkevi/kneed";
    license = licenses.bsd3;
    maintainers = with maintainers; [ tm-drtina ];
  };
}