forked from mirrors/nixpkgs
python3Packages.face_recognition_models: fix startup
This commit is contained in:
parent
72ec538d2c
commit
e176117a81
|
@ -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