My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pyfakewebcam/default.nix

25 lines
680 B

{ lib, buildPythonPackage, fetchPypi, numpy, opencv4 }:
buildPythonPackage rec {
pname = "pyfakewebcam";
version = "0.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "152nglscxmv7600i1i2gahny5z0bybnqgq3npak8npb0lsnwxn1a";
};
propagatedBuildInputs = [ numpy opencv4 ];
# No tests are available
doCheck = false;
pythonImportsCheck = [ "pyfakewebcam" ];
meta = with lib; {
description = "A library for writing RGB frames to a fake webcam device on Linux";
homepage = "https://github.com/jremmons/pyfakewebcam";
license = licenses.lgpl3Only;
maintainers = with maintainers; [ emilytrau ];
platforms = platforms.linux;
};
}