Merge pull request #277143 from lucasew/python/facenet-pytorch

python3Packages.facenet-pytorch: init at 2.5.3

Changed files
+31
pkgs
development
python-modules
facenet-pytorch
top-level
+29
pkgs/development/python-modules/facenet-pytorch/default.nix
···
+
{ buildPythonPackage
+
, fetchPypi
+
, pillow
+
, torchvision
+
, lib
+
}:
+
+
buildPythonPackage rec {
+
pname = "facenet-pytorch";
+
version = "2.5.3";
+
+
src = fetchPypi {
+
inherit pname version;
+
hash = "sha256-mMxbQqSPg3wCPrkvKlcc1KxqRmh8XnG56ZtJEIcnPis=";
+
};
+
+
doCheck = false; # pypi version doesn't ship with tests
+
+
pythonImportsCheck = ["facenet_pytorch"];
+
+
propagatedBuildInputs = [ pillow torchvision ];
+
+
meta = {
+
description = "Pretrained Pytorch face detection (MTCNN) and facial recognition (InceptionResnet) models";
+
homepage = "https://github.com/timesler/facenet-pytorch";
+
license = lib.licenses.mit;
+
maintainers = [ lib.maintainers.lucasew ];
+
};
+
}
+2
pkgs/top-level/python-packages.nix
···
face-recognition = callPackage ../development/python-modules/face-recognition { };
+
facenet-pytorch = callPackage ../development/python-modules/facenet-pytorch { };
+
face-recognition-models = callPackage ../development/python-modules/face-recognition/models.nix { };
factory-boy = callPackage ../development/python-modules/factory-boy { };