python3Packages.pyezviz: 0.1.8.7 -> 0.1.8.9

master
Fabian Affolter 2021-06-06 17:06:18 +02:00 committed by Jonathan Ringer
parent 3cbcbfc4fc
commit 7ef488f819
1 changed files with 9 additions and 2 deletions

View File

@ -1,30 +1,37 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, paho-mqtt
, pandas
, pycryptodome
, pythonOlder
, requests
, xmltodict
}:
buildPythonPackage rec {
pname = "pyezviz";
version = "0.1.8.7";
version = "0.1.8.9";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "baqs";
repo = "pyEzviz";
rev = version;
sha256 = "0k7wl9wf5i0yfdds6f9ma78ckz1p4h72z5s3qg0axzra62fvl9xg";
sha256 = "sha256-ZjHDha7hSRXy86wm61bMMF8zMi5Lux6RbD0yFD/78J4=";
};
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; {