about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/norfair/default.nix
blob: 17c4e3553531e49d49b7ca47b86c0a2d74444a0d (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{ lib
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, filterpy
, importlib-metadata
, numpy
, rich
, scipy
, motmetrics
, opencv4
, pytestCheckHook
, pythonRelaxDepsHook
}:

buildPythonPackage rec {
  pname = "norfair";
  version = "2.2.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "tryolabs";
    repo = "norfair";
    rev = "v${version}";
    hash = "sha256-aKB5TYSLW7FOXIy9u2hK7px6eEmIQdKPrhChKaU1uYs=";
  };

  nativeBuildInputs = [
    poetry-core
    pythonRelaxDepsHook
  ];

  pythonRelaxDeps = [
    "rich"
  ];

  propagatedBuildInputs = [
    filterpy
    importlib-metadata
    numpy
    rich
    scipy
  ];

  passthru.optional-dependencies = {
    metrics = [
      motmetrics
    ];
    video = [
      opencv4
    ];
  };

  nativeCheckInputs = [
    pytestCheckHook
  ];

  pythonImportsCheck = [
    "norfair"
  ];

  meta = with lib; {
    description = "Lightweight Python library for adding real-time multi-object tracking to any detector";
    changelog = "https://github.com/tryolabs/norfair/releases/tag/v${version}";
    homepage = "https://github.com/tryolabs/norfair";
    license = licenses.bsd3;
    maintainers = with maintainers; [ fleaz ];
  };
}