depot/third_party/nixpkgs/pkgs/development/python-modules/pycomm3/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

44 lines
1,005 B
Nix

{
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 ];
};
}