2da59ab0b0
Diff: https://github.com/jkeljo/greeneye-monitor/compare/refs/tags/v3.0.3...v4.0 Changelog: https://github.com/jkeljo/greeneye-monitor/blob/v4.0/CHANGELOG.rst
50 lines
1 KiB
Nix
50 lines
1 KiB
Nix
{ lib
|
|
, aiohttp
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, siobrultech-protocols
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "greeneye-monitor";
|
|
version = "4.0";
|
|
|
|
disabled = pythonOlder "3.10";
|
|
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jkeljo";
|
|
repo = "greeneye-monitor";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-kMyFerb6T5316cr4T5hSo4HcpO5Hl5l+bMor5jon9yY=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "siobrultech_protocols==" "siobrultech_protocols>="
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
siobrultech-protocols
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"greeneye.monitor"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Receive data packets from GreenEye Monitor";
|
|
homepage = "https://github.com/jkeljo/greeneye-monitor";
|
|
changelog = "https://github.com/jkeljo/greeneye-monitor/blob/v${version}/CHANGELOG.rst";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
};
|
|
}
|