···1-{ buildPythonPackage, stdenv, fetchPypi }:
23buildPythonPackage rec {
4 pname = "face_recognition_models";
···1112 # no module named `tests` as no tests are available
13 doCheck = false;
001415 meta = with stdenv.lib; {
16 homepage = https://github.com/ageitgey/face_recognition_models;
···1+{ buildPythonPackage, stdenv, fetchPypi, setuptools }:
23buildPythonPackage rec {
4 pname = "face_recognition_models";
···1112 # no module named `tests` as no tests are available
13 doCheck = false;
14+15+ propagatedBuildInputs = [ setuptools ];
1617 meta = with stdenv.lib; {
18 homepage = https://github.com/ageitgey/face_recognition_models;