nixpkgs/pkgs/applications/misc/meerk40t/camera.nix
Martin Weinelt 86b27c138d
meerk40t-camera: extract to top-level
It confuses the update script, preventing automatic updates through
nixpkgs-update.
2022-11-13 13:59:00 +01:00

39 lines
710 B
Nix

{ lib
, python3
}:
let
inherit (python3.pkgs) buildPythonPackage fetchPypi;
in
buildPythonPackage rec {
pname = "meerk40t-camera";
version = "0.1.9";
format = "setuptools";
src = python3.pkgs.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 ];
};
}