python312Packages.modbus-tk: 1.1.1 -> 1.1.3

This commit is contained in:
Fabian Affolter
2024-08-06 16:18:17 +02:00
parent 2c1c069215
commit 9ff53b879e
@@ -1,37 +1,34 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
fetchPypi,
setuptools,
pythonOlder,
pyserial,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "modbus-tk";
version = "1.1.1";
version = "1.1.3";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "ljean";
repo = "modbus-tk";
rev = "refs/tags/${version}";
hash = "sha256-zikfVMFdlOJvuKVQGEsK03i58X6BGFsGWGrGOJZGC0g=";
src = fetchPypi {
pname = "modbus_tk";
inherit version;
hash = "sha256-aQ+nu4bql4mSRl0tYci1rMY5zg6LgzoKqW1N0XLFZEo=";
};
build-system = [ setuptools ];
dependencies = [ pyserial ];
nativeCheckInputs = [ pytestCheckHook ];
# Source no tagged anymore and PyPI doesn't ship tests
doCheck = false;
pythonImportsCheck = [ "modbus_tk" ];
pytestFlagsArray = [ "tests/unittest_*.py" ];
meta = with lib; {
description = "Module for simple Modbus interactions";
homepage = "https://github.com/ljean/modbus-tk";