blob: 08c42811519322559dd8938afc71c83997ae0cee (
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
39
40
41
42
43
44
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "pycomm3";
version = "1.2.14";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "ottowayi";
repo = "pycomm3";
rev = "refs/tags/v${version}";
hash = "sha256-KdvmISMH2HHU8N665QevVw7q9Qs5CwjXxcWpLoziY/Y=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pycomm3" ];
disabledTestPaths = [
# Don't test examples as some have aditional requirements
"examples/"
# No physical PLC available
"tests/online/"
];
meta = with lib; {
description = "Python Ethernet/IP library for communicating with Allen-Bradley PLCs";
homepage = "https://github.com/ottowayi/pycomm3";
changelog = "https://github.com/ottowayi/pycomm3/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}
|