Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / onvif-zeep / default.nix
blob2c2946d53c00b050efd1b9f14a25ca9083337033
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , setuptools
5 , zeep
6 }:
8 buildPythonPackage rec {
9   pname = "onvif-zeep";
10   version = "0.2.12";
11   pyproject = true;
13   src = fetchPypi {
14     pname = "onvif_zeep";
15     inherit version;
16     hash = "sha256-qou8Aqc+qlCJSwwY45+o0xilg6ZkxlvzWzyAKdHEC0k=";
17   };
19   nativeBuildInputs = [
20     setuptools
21   ];
23   propagatedBuildInputs = [
24     zeep
25   ];
27   pythonImportsCheck = [
28     "onvif"
29   ];
31   # Tests require hardware
32   doCheck = false;
34   meta = with lib; {
35     description = "Python Client for ONVIF Camera";
36     mainProgram = "onvif-cli";
37     homepage = "https://github.com/quatanium/python-onvif";
38     license = licenses.mit;
39     maintainers = with maintainers; [ fleaz ];
40   };