2019-09-14 13:59:20 +02:00
|
|
|
{ buildPythonPackage, stdenv, fetchPypi, setuptools }:
|
2018-03-21 14:44:41 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "face_recognition_models";
|
|
|
|
version = "0.3.0";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "1kwnv3qpy5bhspk780bkyg8jd9n5f6p91ja6sjlwk1wcm00d56xp";
|
|
|
|
};
|
|
|
|
|
|
|
|
# no module named `tests` as no tests are available
|
|
|
|
doCheck = false;
|
|
|
|
|
2019-09-14 13:59:20 +02:00
|
|
|
propagatedBuildInputs = [ setuptools ];
|
|
|
|
|
2018-03-21 14:44:41 +01:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/ageitgey/face_recognition_models";
|
2018-03-21 14:44:41 +01:00
|
|
|
license = licenses.cc0;
|
|
|
|
maintainers = with maintainers; [ ma27 ];
|
|
|
|
description = "Trained models for the face_recognition python library";
|
|
|
|
};
|
|
|
|
}
|