ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / onvif-zeep-async / default.nix
blobd895504186cb342675690945c05f98824fdea5bc
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , httpx
5 , pythonOlder
6 , zeep
7 }:
9 buildPythonPackage rec {
10   pname = "onvif-zeep-async";
11   version = "1.2.1";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-bRPqbuBrC4Q0gdQGb2KAy1pTHce42WvM7gjvAspH4WE=";
19   };
21   propagatedBuildInputs = [
22     httpx
23     zeep
24   ];
26   pythonImportsCheck = [
27     "onvif"
28   ];
30   # Tests are not shipped
31   doCheck = false;
33   meta = with lib; {
34     description = "ONVIF Client Implementation in Python";
35     homepage = "https://github.com/hunterjm/python-onvif-zeep-async";
36     license = with licenses; [ mit ];
37     maintainers = with maintainers; [ fab ];
38   };