58 lines
1.1 KiB
Nix
58 lines
1.1 KiB
Nix
|
{ lib
|
||
|
, buildPythonPackage
|
||
|
, connio
|
||
|
, fetchFromGitHub
|
||
|
, pytest-asyncio
|
||
|
, pytestCheckHook
|
||
|
, pythonOlder
|
||
|
, setuptools
|
||
|
, umodbus
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "async-modbus";
|
||
|
version = "0.2.0";
|
||
|
format = "pyproject";
|
||
|
|
||
|
disabled = pythonOlder "3.7";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "tiagocoutinho";
|
||
|
repo = "async_modbus";
|
||
|
rev = "refs/tags/v${version}";
|
||
|
hash = "sha256-TB+ndUvLZ9G3XXEBpLb4ULHlYZC2CoqGnL2BjMQrhRg=";
|
||
|
};
|
||
|
|
||
|
postPatch = ''
|
||
|
substituteInPlace pyproject.toml \
|
||
|
--replace '"--cov=async_modbus",' "" \
|
||
|
--replace '"--cov-report=html", "--cov-report=term",' "" \
|
||
|
--replace '"--durations=2", "--verbose"' ""
|
||
|
'';
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
setuptools
|
||
|
];
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
connio
|
||
|
umodbus
|
||
|
];
|
||
|
|
||
|
checkInputs = [
|
||
|
pytest-asyncio
|
||
|
pytestCheckHook
|
||
|
];
|
||
|
|
||
|
pythonImportsCheck = [
|
||
|
"async_modbus"
|
||
|
];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Library for Modbus communication";
|
||
|
homepage = "https://github.com/tiagocoutinho/async_modbus";
|
||
|
license = with licenses; [ gpl3Plus ];
|
||
|
maintainers = with maintainers; [ fab ];
|
||
|
};
|
||
|
}
|