Merge pull request #68787 from Ma27/fix-python-dlib

pythonPackages.{dlib,face_recognition_models}: fix build/startup
This commit is contained in:
WilliButz 2019-09-14 14:47:25 +02:00 committed by GitHub
commit 9128fe19cc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View file

@ -21,4 +21,7 @@ buildPythonPackage {
'';
checkInputs = [ pytest more-itertools ];
enableParallelBuilding = true;
dontUseCmakeConfigure = true;
}

View file

@ -1,4 +1,4 @@
{ buildPythonPackage, stdenv, fetchPypi }:
{ buildPythonPackage, stdenv, fetchPypi, setuptools }:
buildPythonPackage rec {
pname = "face_recognition_models";
@ -12,6 +12,8 @@ buildPythonPackage rec {
# no module named `tests` as no tests are available
doCheck = false;
propagatedBuildInputs = [ setuptools ];
meta = with stdenv.lib; {
homepage = https://github.com/ageitgey/face_recognition_models;
license = licenses.cc0;