about summary refs log tree commit diff
path: root/pkgs/applications/misc/meerk40t/camera.nix
blob: ab2a70ad8eb27ded2c7f5243a4893d6993815909 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ lib
, python3
, fetchPypi
}:

let
  inherit (python3.pkgs) buildPythonPackage;
in
buildPythonPackage rec {
  pname = "meerk40t-camera";
  version = "0.1.9";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-uGCBHdgWoorVX2XqMCg0YBweb00sQ9ZSbJe8rlGeovs=";
  };

  postPatch = ''
    sed -i '/meerk40t/d' setup.py
  '';

  propagatedBuildInputs = with python3.pkgs; [
    opencv4
  ];

  pythonImportsCheck = [
    "camera"
  ];

  doCheck = false;

  meta = with lib; {
    description = "MeerK40t camera plugin";
    license = licenses.mit;
    homepage = "https://github.com/meerk40t/meerk40t-camera";
    maintainers = with maintainers; [ hexa ];
  };
}