Commit 0ef59ee4 authored by Phillip Seeber's avatar Phillip Seeber
Browse files

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

parent 960b838a
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -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