Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

python310Packages.insightface: init at 0.7.3 #244655

Merged
merged 3 commits into from
Jul 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion pkgs/applications/science/math/mxnet/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ stdenv.mkDerivation rec {

env.NIX_CFLAGS_COMPILE = toString [
# Needed with GCC 12
"-Wno-error=maybe-uninitialized"
"-Wno-error=uninitialized"
];

Expand Down
77 changes: 77 additions & 0 deletions pkgs/development/python-modules/insightface/default.nix
Original file line number Diff line number Diff line change
@@ -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
oddlama marked this conversation as resolved.
Show resolved Hide resolved

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 ];
};
}
3 changes: 3 additions & 0 deletions pkgs/development/python-modules/mxnet/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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"
'';
Expand Down
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5111,6 +5111,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 { };
Expand Down