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 {
|
buildPythonPackage rec {
|
||||||
pname = "face_recognition_models";
|
pname = "face_recognition_models";
|
||||||
|
@ -12,6 +12,8 @@ buildPythonPackage rec {
|
||||||
# no module named `tests` as no tests are available
|
# no module named `tests` as no tests are available
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ setuptools ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://github.com/ageitgey/face_recognition_models;
|
homepage = https://github.com/ageitgey/face_recognition_models;
|
||||||
license = licenses.cc0;
|
license = licenses.cc0;
|
||||||
|
|
Loading…
Reference in New Issue