3a4df29a92
GitOrigin-RevId: 3d7435c638baffaa826b85459df0fff47f12317d
47 lines
946 B
Nix
47 lines
946 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchFromGitHub
|
|
, aiohttp
|
|
, siobrultech-protocols
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "greeneye-monitor";
|
|
version = "3.0.3";
|
|
|
|
disabled = pythonOlder "3.5";
|
|
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jkeljo";
|
|
repo = "greeneye-monitor";
|
|
rev = "v${version}";
|
|
hash = "sha256-weZTOVFBlB6TxFs8pLWfyB7WD/bn3ljBjX2tVi1Zc/I=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "siobrultech_protocols==" "siobrultech_protocols>="
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
siobrultech-protocols
|
|
];
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "greeneye.monitor" ];
|
|
|
|
meta = {
|
|
description = "Receive data packets from GreenEye Monitor";
|
|
homepage = "https://github.com/jkeljo/greeneye-monitor";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ dotlambda ];
|
|
};
|
|
}
|