The imports of this test reference classes that are not present in the current version of pymodbus in nixpkgs.
51 lines
1.0 KiB
Nix
51 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
pythonOlder,
|
|
fetchFromGitHub,
|
|
buildPythonPackage,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
pyserial,
|
|
openpyxl,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pysunspec2";
|
|
version = "1.3.3";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sunspec";
|
|
repo = "pysunspec2";
|
|
tag = "v${version}";
|
|
hash = "sha256-mVx8Rt5GLyQ2ss0iJPi32Fhl9pD7hsXxW94p+8ri+w4=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
openpyxl
|
|
pyserial
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pytestFlags = [
|
|
# This test relies on old pymodbus 2 version
|
|
"--ignore=sunspec2/tests/test_tls_client.py"
|
|
];
|
|
|
|
pythonImportsCheck = [ "sunspec2" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python library for interfacing with SunSpec devices";
|
|
homepage = "https://github.com/sunspec/pysunspec2";
|
|
changelog = "https://github.com/sunspec/pysunspec2/releases/tag/${src.tag}";
|
|
license = licenses.asl20;
|
|
maintainers = [ lib.maintainers.cheriimoya ];
|
|
};
|
|
}
|