openblas: add some key reverse dependencies to passthru.tests

This commit is contained in:
Robert Scott
2022-08-27 12:17:02 +01:00
parent 7edddb1b4c
commit 07be352bfe
@@ -23,6 +23,13 @@
, enableAVX512 ? false
, enableStatic ? stdenv.hostPlatform.isStatic
, enableShared ? !stdenv.hostPlatform.isStatic
# for passthru.tests
, ceres-solver
, giac
, octave
, opencv
, python3
}:
with lib;
@@ -225,6 +232,11 @@ EOF
ln -s $out/lib/libopenblas.a $out/lib/liblapacke.a
'';
passthru.tests = {
inherit (python3.pkgs) numpy scipy;
inherit ceres-solver giac octave opencv;
};
meta = with lib; {
description = "Basic Linear Algebra Subprograms";
license = licenses.bsd3;