From 96258eb7cd5ab6b04280b6ddaf33f836159d8a11 Mon Sep 17 00:00:00 2001 From: eljamm Date: Tue, 2 Sep 2025 18:11:48 +0200 Subject: [PATCH] python313Packages.pyoprf: add new dependencies --- pkgs/development/python-modules/pyoprf/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/development/python-modules/pyoprf/default.nix b/pkgs/development/python-modules/pyoprf/default.nix index 317533daa588..f7f525034e79 100644 --- a/pkgs/development/python-modules/pyoprf/default.nix +++ b/pkgs/development/python-modules/pyoprf/default.nix @@ -4,7 +4,11 @@ buildPythonPackage, liboprf, setuptools, + ble-serial, + pyserial, + pyserial-asyncio, pysodium, + pyudev, securestring, pytestCheckHook, }: @@ -32,7 +36,11 @@ buildPythonPackage rec { build-system = [ setuptools ]; dependencies = [ + ble-serial + pyserial + pyserial-asyncio pysodium + pyudev securestring ];