python313Packages.pyezvizapi: init at 1.0.0.9

This commit is contained in:
Robert Schütz
2025-02-05 22:40:55 -08:00
committed by Martin Weinelt
parent 24984a2d5b
commit 616ac9df36
2 changed files with 51 additions and 0 deletions
@@ -0,0 +1,49 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
paho-mqtt,
pandas,
pycryptodome,
pythonOlder,
requests,
setuptools,
xmltodict,
}:
buildPythonPackage rec {
pname = "pyezviz";
version = "1.0.0.9";
pyproject = true;
src = fetchFromGitHub {
owner = "RenierM26";
repo = "pyEzvizApi";
tag = version;
hash = "sha256-iqTNkfecBrxJ3BwACbMmcHqequ6IUzjL550ip+jNIrs=";
};
build-system = [ setuptools ];
dependencies = [
paho-mqtt
pandas
pycryptodome
requests
xmltodict
];
pythonImportsCheck = [ "pyezvizapi" ];
# test_cam_rtsp.py is not actually a unit test
doCheck = false;
meta = {
description = "Python interface for for Ezviz cameras";
homepage = "https://github.com/RenierM26/pyEzvizApi";
changelog = "https://github.com/RenierM26/pyEzvizApi/releases/tag/${src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dotlambda ];
mainProgram = "pyezviz";
};
}
+2
View File
@@ -11845,6 +11845,8 @@ self: super: with self; {
pyezviz = callPackage ../development/python-modules/pyezviz { };
pyezvizapi = callPackage ../development/python-modules/pyezvizapi { };
pyface = callPackage ../development/python-modules/pyface { };
pyfaidx = callPackage ../development/python-modules/pyfaidx { };