i-pi: add missing, non-declared scipy dependency for the socket driver

This commit is contained in:
Phillip Seeber 2024-09-17 11:53:04 +02:00
parent 960b838a5f
commit 0ef59ee4e6

View File

@ -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