python313Packages.libpyvivotek: 0.4.0 -> 0.6.1 (#448367)

This commit is contained in:
Fabian Affolter
2025-10-04 06:30:47 +00:00
committed by GitHub
@@ -3,26 +3,26 @@
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
requests,
setuptools,
vcrpy,
}:
buildPythonPackage rec {
pname = "libpyvivotek";
version = "0.4.0";
format = "setuptools";
disabled = pythonOlder "3.7";
version = "0.6.1";
pyproject = true;
src = fetchFromGitHub {
owner = "HarlemSquirrel";
repo = "python-vivotek";
rev = "v${version}";
sha256 = "pNlnGpDjdYE7Lxog8GGZV+UZZmfmt5bwHof5LngPQjg=";
tag = "v${version}";
hash = "sha256-ai+FlvyrdeLyg/PJU8T0fTtbdnlyGo6mE4AM2oRATj8=";
};
propagatedBuildInputs = [ requests ];
build-system = [ setuptools ];
dependencies = [ requests ];
nativeCheckInputs = [
pytestCheckHook
@@ -34,6 +34,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python Library for Vivotek IP Cameras";
homepage = "https://github.com/HarlemSquirrel/python-vivotek";
changelog = "https://github.com/HarlemSquirrel/python-vivotek/releases/tag/${src.tag}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};