Merge pull request #310431 from fabaff/pycomm3

python312Packages.pycomm3: init at 1.2.14
This commit is contained in:
Fabian Affolter 2024-05-10 13:13:53 +02:00 committed by GitHub
commit adc41e1e3e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 49 additions and 0 deletions

View file

@ -0,0 +1,47 @@
{ 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 = "A 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 ];
};
}

View file

@ -9915,6 +9915,8 @@ self: super: with self; {
pycketcasts = callPackage ../development/python-modules/pycketcasts { };
pycomm3 = callPackage ../development/python-modules/pycomm3 { };
pycomposefile = callPackage ../development/python-modules/pycomposefile { };
pycontrol4 = callPackage ../development/python-modules/pycontrol4 { };