1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
{
lib,
aiohttp,
buildPythonPackage,
click,
fetchFromGitHub,
prompt-toolkit,
pygments,
pyserial,
pytest-asyncio,
pytest-xdist,
pytestCheckHook,
pythonOlder,
redis,
setuptools,
sqlalchemy,
twisted,
typer,
}:
buildPythonPackage rec {
pname = "pymodbus";
version = "3.6.9";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "pymodbus-dev";
repo = "pymodbus";
rev = "refs/tags/v${version}";
hash = "sha256-ScqxDO0hif8p3C6+vvm7FgSEQjCXBwUPOc7Y/3OfkoI=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "--cov-report html " ""
'';
build-system = [ setuptools ];
passthru.optional-dependencies = {
repl = [
aiohttp
typer
prompt-toolkit
pygments
click
] ++ typer.optional-dependencies.all;
serial = [ pyserial ];
};
nativeCheckInputs = [
pytest-asyncio
pytest-xdist
pytestCheckHook
redis
sqlalchemy
twisted
] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
preCheck = ''
pushd test
'';
postCheck = ''
popd
'';
pythonImportsCheck = [ "pymodbus" ];
disabledTests =
[
# Tests often hang
"test_connected"
]
++ lib.optionals (lib.versionAtLeast aiohttp.version "3.9.0") [
"test_split_serial_packet"
"test_serial_poll"
"test_simulator"
];
meta = with lib; {
description = "Python implementation of the Modbus protocol";
longDescription = ''
Pymodbus is a full Modbus protocol implementation using twisted,
torndo or asyncio for its asynchronous communications core. It can
also be used without any third party dependencies if a more
lightweight project is needed.
'';
homepage = "https://github.com/pymodbus-dev/pymodbus";
changelog = "https://github.com/pymodbus-dev/pymodbus/releases/tag/v${version}";
license = with licenses; [ bsd3 ];
maintainers = with maintainers; [ fab ];
mainProgram = "pymodbus.simulator";
};
}
|