vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / pkgs / applications / misc / meerk40t / camera.nix
blobab2a70ad8eb27ded2c7f5243a4893d6993815909
1 { lib
2 , python3
3 , fetchPypi
4 }:
6 let
7   inherit (python3.pkgs) buildPythonPackage;
8 in
9 buildPythonPackage rec {
10   pname = "meerk40t-camera";
11   version = "0.1.9";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-uGCBHdgWoorVX2XqMCg0YBweb00sQ9ZSbJe8rlGeovs=";
17   };
19   postPatch = ''
20     sed -i '/meerk40t/d' setup.py
21   '';
23   propagatedBuildInputs = with python3.pkgs; [
24     opencv4
25   ];
27   pythonImportsCheck = [
28     "camera"
29   ];
31   doCheck = false;
33   meta = with lib; {
34     description = "MeerK40t camera plugin";
35     license = licenses.mit;
36     homepage = "https://github.com/meerk40t/meerk40t-camera";
37     maintainers = with maintainers; [ hexa ];
38   };