From 11450d22ff86e2d27f4a84b351bbcdc0252fe970 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 22 Nov 2023 15:34:46 +0100 Subject: [PATCH] python311Packages.velbus-aio: 2023.10.2 -> 2023.11.0 https://github.com/Cereal2nd/velbus-aio/releases/tag/2023.11.0 --- .../development/python-modules/velbus-aio/default.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/velbus-aio/default.nix b/pkgs/development/python-modules/velbus-aio/default.nix index 6a7fd953c423..6808c1d906d6 100644 --- a/pkgs/development/python-modules/velbus-aio/default.nix +++ b/pkgs/development/python-modules/velbus-aio/default.nix @@ -6,12 +6,13 @@ , pyserial , pyserial-asyncio , pytestCheckHook +, setuptools }: buildPythonPackage rec { pname = "velbus-aio"; - version = "2023.10.2"; - format = "setuptools"; + version = "2023.11.0"; + pyproject = true; disabled = pythonOlder "3.7"; @@ -19,10 +20,14 @@ buildPythonPackage rec { owner = "Cereal2nd"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-qRKVjiRrRg1YwwYCSp6KGvaS7QnYLIW5rum3X7vEANM="; + hash = "sha256-j0NGeuxhtxmlpal9MpnlHqGv47uTVx1Lyfy9u0cEtYg="; fetchSubmodules = true; }; + nativeBuildInputs = [ + setuptools + ]; + propagatedBuildInputs = [ backoff pyserial