1{ buildPythonPackage, stdenv, fetchPypi }:
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 meta = with stdenv.lib; {
16 homepage = https://github.com/ageitgey/face_recognition_models;
17 license = licenses.cc0;
18 maintainers = with maintainers; [ ma27 ];
19 description = "Trained models for the face_recognition python library";
20 };
21}