Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / face-recognition / models.nix
blob9df1ac060589953bf929ae6b5933d8c584dfbf0d
1 { buildPythonPackage
2 , lib
3 , fetchPypi
4 , setuptools
5 }:
7 buildPythonPackage rec {
8   pname = "face-recognition-models";
9   version = "0.3.0";
10   format = "setuptools";
12   src = fetchPypi {
13     pname = "face_recognition_models";
14     inherit version;
15     hash = "sha256-t5vSAKiMh8mp1EbJkK5xxaYm0fNzAXTm1XAVf/HYls8=";
16   };
18   propagatedBuildInputs = [
19     setuptools
20   ];
22   # no tests
23   doCheck = false;
25   pythonImportsCheck = [
26     "face_recognition_models"
27   ];
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   };