Unverified Commit 839e56fb authored by Markus Kowalewski's avatar Markus Kowalewski Committed by GitHub
Browse files

i-pi: add missing, non-declared scipy dependency for the socket driver (#342499)

parents e2f071fe 0ef59ee4
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