From 0ef59ee4e6209d34f57468bac17d7ed2d3e74415 Mon Sep 17 00:00:00 2001 From: Phillip Seeber Date: Tue, 17 Sep 2024 11:53:04 +0200 Subject: [PATCH] i-pi: add missing, non-declared scipy dependency for the socket driver --- pkgs/development/python-modules/i-pi/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/i-pi/default.nix b/pkgs/development/python-modules/i-pi/default.nix index 8f62f52f6536..2ad38a1ea4ac 100644 --- a/pkgs/development/python-modules/i-pi/default.nix +++ b/pkgs/development/python-modules/i-pi/default.nix @@ -6,6 +6,7 @@ makeWrapper, setuptools, numpy, + scipy, distutils, pytestCheckHook, mock, @@ -32,7 +33,10 @@ buildPythonPackage rec { makeWrapper ]; - dependencies = [ numpy ]; + dependencies = [ + numpy + scipy + ]; nativeCheckInputs = [ pytestCheckHook