mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
Merge pull request #68787 from Ma27/fix-python-dlib
pythonPackages.{dlib,face_recognition_models}: fix build/startup
This commit is contained in:
commit
9128fe19cc
2 changed files with 6 additions and 1 deletions
|
@ -21,4 +21,7 @@ buildPythonPackage {
|
|||
'';
|
||||
|
||||
checkInputs = [ pytest more-itertools ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
dontUseCmakeConfigure = true;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue