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 { lib
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, paho-mqtt
, pandas , pandas
, pycryptodome
, pythonOlder , pythonOlder
, requests , requests
, xmltodict
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pyezviz"; pname = "pyezviz";
version = "0.1.8.7"; version = "0.1.8.9";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.6";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "baqs"; owner = "baqs";
repo = "pyEzviz"; repo = "pyEzviz";
rev = version; rev = version;
sha256 = "0k7wl9wf5i0yfdds6f9ma78ckz1p4h72z5s3qg0axzra62fvl9xg"; sha256 = "sha256-ZjHDha7hSRXy86wm61bMMF8zMi5Lux6RbD0yFD/78J4=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
paho-mqtt
pandas pandas
pycryptodome
requests requests
xmltodict
]; ];
# Project has no tests. test_cam_rtsp.py is more a sample for using the module # Project has no tests. test_cam_rtsp.py is more a sample for using the module
doCheck = false; doCheck = false;
pythonImportsCheck = [ "pyezviz" ]; pythonImportsCheck = [ "pyezviz" ];
meta = with lib; { meta = with lib; {