mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
Merge pull request #188490 from risicle/ris-openblas-passthru-tests
This commit is contained in:
commit
1a9d22934c
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user