depot/third_party/nixpkgs/pkgs/development/python-modules/insightface/default.nix
Default email 24fdeddc0a Project import generated by Copybara.
GitOrigin-RevId: 2768c7d042a37de65bb1b5b3268fc987e534c49d
2024-10-23 09:41:50 +03:00

86 lines
1.6 KiB
Nix

{
lib,
albumentations,
buildPythonPackage,
cython,
easydict,
fetchPypi,
insightface,
matplotlib,
numpy,
onnx,
onnxruntime,
opencv4,
pillow,
prettytable,
pythonOlder,
requests,
setuptools,
scipy,
scikit-image,
scikit-learn,
testers,
tqdm,
stdenv,
}:
buildPythonPackage rec {
pname = "insightface";
version = "0.7.3";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-8ZH3GWEuuzcBj0GTaBRQBUTND4bm/NZ2wCPzVMZo3fc=";
};
build-system = [
cython
setuptools
];
dependencies = [
albumentations
easydict
matplotlib
numpy
onnx
onnxruntime
opencv4
pillow
prettytable
requests
scikit-learn
scikit-image
scipy
tqdm
];
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 = {
description = "State-of-the-art 2D and 3D Face Analysis Project";
mainProgram = "insightface-cli";
homepage = "https://github.com/deepinsight/insightface";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ oddlama ];
# terminate called after throwing an instance of 'onnxruntime::OnnxRuntimeException'
broken = stdenv.system == "aarch64-linux";
};
}