Skip to content

Commit

Permalink
python312Packages.onvif-zeep-async: 3.1.12 -> 3.1.13 (NixOS#369644)
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff authored Jan 1, 2025
2 parents bd975ac + 28243f6 commit 33c577e
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions pkgs/development/python-modules/onvif-zeep-async/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,30 @@
lib,
buildPythonPackage,
ciso8601,
fetchPypi,
fetchFromGitHub,
httpx,
pythonOlder,
setuptools,
zeep,
}:

buildPythonPackage rec {
pname = "onvif-zeep-async";
version = "3.1.12";
format = "setuptools";
version = "3.1.13";
pyproject = true;

disabled = pythonOlder "3.7";

src = fetchPypi {
inherit pname version;
hash = "sha256-TXSwrWnDXzntXZN/u09QB3BsIa6tpf6LpGFKEyA/GH8=";
src = fetchFromGitHub {
owner = "openvideolibs";
repo = "python-onvif-zeep-async";
rev = "refs/tags/v${version}";
hash = "sha256-Z9LtKcgyebmdrChRz0QwiQdnrtcIVeCtKQAvL9gBMY4=";
};

propagatedBuildInputs = [
build-system = [ setuptools ];

dependencies = [
ciso8601
httpx
zeep
Expand All @@ -33,9 +38,10 @@ buildPythonPackage rec {

meta = with lib; {
description = "ONVIF Client Implementation in Python";
mainProgram = "onvif-cli";
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 ];
mainProgram = "onvif-cli";
};
}

0 comments on commit 33c577e

Please sign in to comment.