Skip to content

Commit

Permalink
python310Packages.insightface: init at 0.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
oddlama committed Jul 29, 2023
1 parent e98b498 commit fd0f8a2
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 0 deletions.
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

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 ];
};
}
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

0 comments on commit fd0f8a2

Please sign in to comment.