1{ buildPythonPackage, lib, fetchPypi, setuptools }: 2 3buildPythonPackage rec { 4 pname = "face_recognition_models"; 5 version = "0.3.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1kwnv3qpy5bhspk780bkyg8jd9n5f6p91ja6sjlwk1wcm00d56xp"; 10 }; 11 12 # no module named `tests` as no tests are available 13 doCheck = false; 14 15 propagatedBuildInputs = [ setuptools ]; 16 17 meta = with lib; { 18 homepage = "https://github.com/ageitgey/face_recognition_models"; 19 license = licenses.cc0; 20 maintainers = with maintainers; [ ma27 ]; 21 description = "Trained models for the face_recognition python library"; 22 }; 23}