blob: 5d82d3aec56ca9f50d9761e92bac5ee56d46acd4 (
plain) (
blame)
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
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
pythonOlder,
pyserial,
}:
buildPythonPackage rec {
pname = "modbus-tk";
version = "1.1.3";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchPypi {
pname = "modbus_tk";
inherit version;
hash = "sha256-aQ+nu4bql4mSRl0tYci1rMY5zg6LgzoKqW1N0XLFZEo=";
};
build-system = [ setuptools ];
dependencies = [ pyserial ];
# Source no tagged anymore and PyPI doesn't ship tests
doCheck = false;
pythonImportsCheck = [ "modbus_tk" ];
meta = with lib; {
description = "Module for simple Modbus interactions";
homepage = "https://github.com/ljean/modbus-tk";
license = licenses.lgpl21Only;
maintainers = with maintainers; [ fab ];
};
}
|