forked from mirrors/nixpkgs
40 lines
708 B
Nix
40 lines
708 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, httpx
|
|
, pythonOlder
|
|
, zeep
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "onvif-zeep-async";
|
|
version = "1.2.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-bRPqbuBrC4Q0gdQGb2KAy1pTHce42WvM7gjvAspH4WE=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
httpx
|
|
zeep
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"onvif"
|
|
];
|
|
|
|
# Tests are not shipped
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "ONVIF Client Implementation in Python";
|
|
homepage = "https://github.com/hunterjm/python-onvif-zeep-async";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|