Merge pull request #131617 from angustrau/pyfakewebcam

This commit is contained in:
Sandro 2021-08-05 09:27:24 +02:00 committed by GitHub
commit 014efd4297
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ 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; [ angustrau ];
platforms = platforms.linux;
};
}

View file

@ -5990,6 +5990,8 @@ in {
pyfakefs = callPackage ../development/python-modules/pyfakefs { };
pyfakewebcam = callPackage ../development/python-modules/pyfakewebcam { };
pyfantom = callPackage ../development/python-modules/pyfantom { };
pyfcm = callPackage ../development/python-modules/pyfcm { };