summary refs log tree commit diff
path: root/pkgs/development/python-modules/insightface/default.nix
blob: e06b86f91802168594653bec4c78cce3228ae7e9 (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
70
71
72
73
74
75
76
77
78
79
80
{ lib
, albumentations
, buildPythonPackage
, cython
, easydict
, fetchPypi
, insightface
, matplotlib
, mxnet
, numpy
, onnx
, onnxruntime
, opencv4
, prettytable
, pythonOlder
, scikit-image
, scikit-learn
, tensorboard
, testers
, tqdm
}:

buildPythonPackage rec {
  pname = "insightface";
  version = "0.7.3";
  format = "setuptools";

  disabled = pythonOlder "3.8";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-8ZH3GWEuuzcBj0GTaBRQBUTND4bm/NZ2wCPzVMZo3fc=";
  };

  nativeBuildInputs = [
    cython
  ];

  propagatedBuildInputs = [
    easydict
    matplotlib
    mxnet
    numpy
    onnx
    onnxruntime
    opencv4
    scikit-learn
    scikit-image
    tensorboard
    tqdm
    albumentations
    prettytable
  ];

  pythonImportsCheck = [
    "insightface"
    "insightface.app"
    "insightface.data"
  ];

  passthru.tests.version = testers.testVersion {
    package = insightface;
    command = "insightface-cli --help";
    # Doesn't support --version but we still want to make sure the cli is executable
    # and returns the help output
    version = "help";
  };

  doCheck = false; # Upstream has no tests

  meta = with lib; {
    # Both protobuf3 and protobuf4 in the build closure.
    # related: https://github.com/onnx/onnx/issues/5563
    broken = true;
    description = "State-of-the-art 2D and 3D Face Analysis Project";
    homepage = "https://github.com/deepinsight/insightface";
    license = licenses.mit;
    maintainers = with maintainers; [ oddlama ];
  };
}