mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 09:43:14 +00:00
python3Packages.pymodbus: 2.4.0 -> 2.5.1
This commit is contained in:
parent
6373ef78c6
commit
9664242aad
@ -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
|
||||
];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user