python312Packages.onvif-zeep-async: 3.1.12 -> 3.1.13 (#369644)

This commit is contained in:
Fabian Affolter
2025-01-01 12:33:31 +01:00
committed by GitHub

View File

@@ -2,25 +2,30 @@
lib, lib,
buildPythonPackage, buildPythonPackage,
ciso8601, ciso8601,
fetchPypi, fetchFromGitHub,
httpx, httpx,
pythonOlder, pythonOlder,
setuptools,
zeep, zeep,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "onvif-zeep-async"; pname = "onvif-zeep-async";
version = "3.1.12"; version = "3.1.13";
format = "setuptools"; pyproject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchFromGitHub {
inherit pname version; owner = "openvideolibs";
hash = "sha256-TXSwrWnDXzntXZN/u09QB3BsIa6tpf6LpGFKEyA/GH8="; repo = "python-onvif-zeep-async";
rev = "refs/tags/v${version}";
hash = "sha256-Z9LtKcgyebmdrChRz0QwiQdnrtcIVeCtKQAvL9gBMY4=";
}; };
propagatedBuildInputs = [ build-system = [ setuptools ];
dependencies = [
ciso8601 ciso8601
httpx httpx
zeep zeep
@@ -33,9 +38,10 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "ONVIF Client Implementation in Python"; description = "ONVIF Client Implementation in Python";
mainProgram = "onvif-cli";
homepage = "https://github.com/hunterjm/python-onvif-zeep-async"; homepage = "https://github.com/hunterjm/python-onvif-zeep-async";
license = with licenses; [ mit ]; changelog = "https://github.com/openvideolibs/python-onvif-zeep-async/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
mainProgram = "onvif-cli";
}; };
} }