2018-03-21 13:44:41 +00:00
|
|
|
{ buildPythonPackage, fetchFromGitHub, pillow, click, dlib, numpy
|
2018-07-23 10:55:39 +01:00
|
|
|
, face_recognition_models, stdenv, flake8, pytest, glibcLocales
|
2018-03-21 13:44:41 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "face_recognition";
|
2019-03-03 13:23:27 +00:00
|
|
|
version = "1.2.3";
|
2018-03-21 13:44:41 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = pname;
|
|
|
|
owner = "ageitgey";
|
2019-03-03 13:23:27 +00:00
|
|
|
rev = "634db2e4309a365cee2503cb65d6f2e88f519d1e";
|
|
|
|
sha256 = "06zw5hq417d5yp17zynhxhb73074lx2qy64fqfzf711rw5vrn2mx";
|
2018-03-21 13:44:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace setup.py --replace "flake8==2.6.0" "flake8"
|
|
|
|
'';
|
|
|
|
|
2018-04-02 18:42:09 +01:00
|
|
|
propagatedBuildInputs = [ pillow click dlib numpy face_recognition_models ];
|
2018-03-21 13:44:41 +00:00
|
|
|
|
2019-03-03 13:23:27 +00:00
|
|
|
# Our dlib is compiled with AVX instructions by default which breaks
|
|
|
|
# with "Illegal instruction" on some builders due to missing hardware features.
|
|
|
|
#
|
|
|
|
# As this makes the build fairly unreliable, it's better to skip the test and to ensure that
|
|
|
|
# the build is working and after each change to the package, manual testing should be done.
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
# Although tests are disabled by default, checkPhase still exists, so
|
|
|
|
# maintainers can check the package's functionality locally before modifying it.
|
2018-07-23 10:55:39 +01:00
|
|
|
checkInputs = [ flake8 pytest glibcLocales ];
|
2018-03-21 13:44:41 +00:00
|
|
|
checkPhase = ''
|
|
|
|
LC_ALL="en_US.UTF-8" py.test
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
license = licenses.mit;
|
|
|
|
homepage = https://github.com/ageitgey/face_recognition;
|
|
|
|
maintainers = with maintainers; [ ma27 ];
|
|
|
|
description = "The world's simplest facial recognition api for Python and the command line";
|
|
|
|
};
|
|
|
|
}
|