a66bca1520
GitOrigin-RevId: 40f79f003b6377bd2f4ed4027dde1f8f922995dd
48 lines
973 B
Nix
48 lines
973 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, paho-mqtt
|
|
, pandas
|
|
, pycryptodome
|
|
, pythonOlder
|
|
, requests
|
|
, xmltodict
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyezviz";
|
|
version = "0.2.0.10";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "baqs";
|
|
repo = "pyEzviz";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-oi2F+OYxiQXq8JlIqbQyjpUuRciMwIaBCh27lvM7TuM=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
paho-mqtt
|
|
pandas
|
|
pycryptodome
|
|
requests
|
|
xmltodict
|
|
];
|
|
|
|
# Project has no tests. test_cam_rtsp.py is more a sample for using the module
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"pyezviz"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python interface for for Ezviz cameras";
|
|
homepage = "https://github.com/baqs/pyEzviz/";
|
|
changelog = "https://github.com/BaQs/pyEzviz/releases/tag/${version}";
|
|
license = with licenses; [ asl20 ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|