Merge pull request #244655 from oddlama/init-insightface

python310Packages.insightface: init at 0.7.3
This commit is contained in:
Martin Weinelt 2023-07-29 20:49:19 +02:00 committed by GitHub
commit 86c62f4d00
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 82 additions and 1 deletions

View file

@ -56,7 +56,6 @@ stdenv.mkDerivation rec {
env.NIX_CFLAGS_COMPILE = toString [
# Needed with GCC 12
"-Wno-error=maybe-uninitialized"
"-Wno-error=uninitialized"
];

View file

@ -0,0 +1,77 @@
{ 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; {
description = "State-of-the-art 2D and 3D Face Analysis Project";
homepage = "https://github.com/deepinsight/insightface";
license = licenses.mit;
maintainers = with maintainers; [ oddlama ];
};
}

View file

@ -20,6 +20,9 @@ buildPythonPackage {
doCheck = !isPy3k;
postPatch = ''
# Required to support numpy >=1.24 where np.bool is removed in favor of just bool
substituteInPlace python/mxnet/numpy/utils.py \
--replace "bool = onp.bool" "bool = bool"
substituteInPlace python/setup.py \
--replace "graphviz<0.9.0," "graphviz"
'';

View file

@ -5105,6 +5105,8 @@ self: super: with self; {
insegel = callPackage ../development/python-modules/insegel { };
insightface = callPackage ../development/python-modules/insightface { };
installer = callPackage ../development/python-modules/installer { };
insteon-frontend-home-assistant = callPackage ../development/python-modules/insteon-frontend-home-assistant { };