From 54d2a1d6783b6ce793af6c148485c4da9bc439ea Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 25 May 2024 09:45:24 +0200 Subject: [PATCH] python312Packages.velbus-aio: 2024.4.1 -> 2024.5.1 Changelog: https://github.com/Cereal2nd/velbus-aio/releases/tag/2024.5.1 --- pkgs/development/python-modules/velbus-aio/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/velbus-aio/default.nix b/pkgs/development/python-modules/velbus-aio/default.nix index f754c828dea3..d7ba738dd86f 100644 --- a/pkgs/development/python-modules/velbus-aio/default.nix +++ b/pkgs/development/python-modules/velbus-aio/default.nix @@ -5,14 +5,14 @@ fetchFromGitHub, pythonOlder, pyserial, - pyserial-asyncio, + pyserial-asyncio-fast, pytestCheckHook, setuptools, }: buildPythonPackage rec { pname = "velbus-aio"; - version = "2024.4.1"; + version = "2024.5.1"; pyproject = true; disabled = pythonOlder "3.7"; @@ -21,7 +21,7 @@ buildPythonPackage rec { owner = "Cereal2nd"; repo = "velbus-aio"; rev = "refs/tags/${version}"; - hash = "sha256-rskWnH5zFvBuNL5eJ8O4D6htRP/XtFcq1xH8ZXzT1I4="; + hash = "sha256-rOuw1Iw6mGoXNSqxOlBappARzSGIlii03Hd8/3jWiQg="; fetchSubmodules = true; }; @@ -30,7 +30,7 @@ buildPythonPackage rec { dependencies = [ backoff pyserial - pyserial-asyncio + pyserial-asyncio-fast ]; nativeCheckInputs = [ pytestCheckHook ];