Merge pull request #311755 from r-ryantm/auto-update/python311Packages.pyezviz

python311Packages.pyezviz: 0.2.2.3 -> 0.2.2.4
This commit is contained in:
Fabian Affolter 2024-05-18 13:32:26 +02:00 committed by GitHub
commit c6a8ccbb4b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,29 +1,33 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, paho-mqtt
, pandas
, pycryptodome
, pythonOlder
, requests
, xmltodict
{
lib,
buildPythonPackage,
fetchFromGitHub,
paho-mqtt,
pandas,
pycryptodome,
pythonOlder,
requests,
setuptools,
xmltodict,
}:
buildPythonPackage rec {
pname = "pyezviz";
version = "0.2.2.3";
format = "setuptools";
version = "0.2.2.4";
pyproject = true;
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "baqs";
repo = "pyEzviz";
rev = "refs/tags/${version}";
hash = "sha256-HZLWpoo0luAqqwLA3t7cDh0yVP6znrzMoUg7cuexd28=";
hash = "sha256-ngQu9g0qvJ3zDaTdGqJDGRoMhnGYdp5jHDoPiuXOwGs=";
};
propagatedBuildInputs = [
build-system = [ setuptools ];
dependencies = [
paho-mqtt
pandas
pycryptodome
@ -34,16 +38,14 @@ buildPythonPackage rec {
# Project has no tests. test_cam_rtsp.py is more a sample for using the module
doCheck = false;
pythonImportsCheck = [
"pyezviz"
];
pythonImportsCheck = [ "pyezviz" ];
meta = with lib; {
description = "Python interface for for Ezviz cameras";
mainProgram = "pyezviz";
homepage = "https://github.com/baqs/pyEzviz/";
changelog = "https://github.com/BaQs/pyEzviz/releases/tag/${version}";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
mainProgram = "pyezviz";
};
}