python3Packages.pymodbus: 2.4.0 -> 2.5.1

This commit is contained in:
Fabian Affolter 2021-04-03 21:03:24 +02:00
parent 6373ef78c6
commit 9664242aad

View File

@ -1,12 +1,15 @@
{ lib
, aiohttp
, asynctest
, buildPythonPackage
, click
, fetchFromGitHub
, mock
, prompt_toolkit
, pygments
, pyserial
, pyserial-asyncio
, pytestCheckHook
, pythonOlder
, redis
, sqlalchemy
, tornado
@ -15,17 +18,21 @@
buildPythonPackage rec {
pname = "pymodbus";
version = "2.4.0";
version = "2.5.1";
src = fetchFromGitHub {
owner = "riptideio";
repo = pname;
rev = "v${version}";
sha256 = "0x0dv02shcc2yxxm9kvcbhip111sna74dvcfssxdzzy967vnq76v";
sha256 = "sha256-b85jfBZfMZtqtmID+tGBgOe9o0BbmBH83UV71lYAI5c=";
};
# Twisted asynchronous version is not supported due to a missing dependency
propagatedBuildInputs = [
aiohttp
click
prompt_toolkit
pygments
pyserial
pyserial-asyncio
tornado
@ -34,11 +41,9 @@ buildPythonPackage rec {
checkInputs = [
asynctest
mock
pyserial-asyncio
pytestCheckHook
redis
sqlalchemy
tornado
twisted
];