cdbc6e64e4
Note: I DO NOT resign from nixpkgs, not at all! However, I like a clean notification inbox and I get a lot of stuff for packages where I'm only an end-user or don't use them anymore and thus can't help out that much. So please consider it a measure to reduce the mental load for me when going through my notifications ;-)
23 lines
619 B
Nix
23 lines
619 B
Nix
{ buildPythonPackage, lib, fetchPypi, setuptools }:
|
|
|
|
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;
|
|
|
|
propagatedBuildInputs = [ setuptools ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/ageitgey/face_recognition_models";
|
|
license = licenses.cc0;
|
|
maintainers = with maintainers; [ ];
|
|
description = "Trained models for the face_recognition python library";
|
|
};
|
|
}
|