depot/third_party/nixpkgs/pkgs/development/python-modules/onvif-zeep-async/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

41 lines
767 B
Nix

{
lib,
buildPythonPackage,
ciso8601,
fetchPypi,
httpx,
pythonOlder,
zeep,
}:
buildPythonPackage rec {
pname = "onvif-zeep-async";
version = "3.1.12";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-TXSwrWnDXzntXZN/u09QB3BsIa6tpf6LpGFKEyA/GH8=";
};
propagatedBuildInputs = [
ciso8601
httpx
zeep
];
pythonImportsCheck = [ "onvif" ];
# Tests are not shipped
doCheck = false;
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 ];
maintainers = with maintainers; [ fab ];
};
}