ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / face-recognition / default.nix
blob150429acf87903e0992f97e56a923566802dcf41
1 { buildPythonPackage
2 , fetchPypi
3 , lib
5 # propagates
6 , click
7 , dlib
8 , face-recognition-models
9 , numpy
10 , pillow
12 # tests
13 , pytestCheckHook
16 buildPythonPackage rec {
17   pname = "face-recognition";
18   version = "1.3.0";
19   format = "setuptools";
21   src = fetchPypi  {
22     pname = "face_recognition";
23     inherit version;
24     hash = "sha256-Xl790WhqpWavDTzBMTsTHksZdleo/9A2aebT+tknBew=";
25   };
27   propagatedBuildInputs = [
28     click
29     dlib
30     face-recognition-models
31     numpy
32     pillow
33   ];
35   checkInputs = [
36     pytestCheckHook
37   ];
39   meta = with lib; {
40     license = licenses.mit;
41     homepage = "https://github.com/ageitgey/face_recognition";
42     maintainers = with maintainers; [ ];
43     description = "The world's simplest facial recognition api for Python and the command line";
44   };