1{ buildPythonPackage
2, lib
3, fetchPypi
4, setuptools
5}:
6
7buildPythonPackage rec {
8 pname = "face-recognition-models";
9 version = "0.3.0";
10 format = "setuptools";
11
12 src = fetchPypi {
13 pname = "face_recognition_models";
14 inherit version;
15 hash = "sha256-t5vSAKiMh8mp1EbJkK5xxaYm0fNzAXTm1XAVf/HYls8=";
16 };
17
18 propagatedBuildInputs = [
19 setuptools
20 ];
21
22 # no tests
23 doCheck = false;
24
25 pythonImportsCheck = [
26 "face_recognition_models"
27 ];
28
29 meta = with lib; {
30 homepage = "https://github.com/ageitgey/face_recognition_models";
31 license = licenses.cc0;
32 maintainers = with maintainers; [ ];
33 description = "Trained models for the face_recognition python library";
34 };
35}