nixpkgs/pkgs/development/python-modules/uvcclient/default.nix
2024-10-04 18:41:33 +00:00

42 lines
853 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
mock,
pytest-cov-stub,
pytest-xdist,
pytestCheckHook
}:
buildPythonPackage rec {
pname = "uvcclient";
version = "0.12.2";
pyproject = true;
src = fetchFromGitHub {
owner = "kk7ds";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-V7xIvZ9vIXHPpkEeJZ6QedWk+4ZVNwCzj5ffLyixFz4=";
};
build-system = [ poetry-core ];
nativeCheckInputs = [
mock
pytest-cov-stub
pytest-xdist
pytestCheckHook
];
meta = with lib; {
changelog = "https://github.com/uilibs/uvcclient/blob/${src.rev}/CHANGELOG.md";
description = "Client for Ubiquiti's Unifi Camera NVR";
mainProgram = "uvc";
homepage = "https://github.com/kk7ds/uvcclient";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ hexa ];
};
}