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