pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / development / ocaml-modules / owl / default.nix
blob178a4f6349b3dd95068afea356845a31f1eaec4e
1 { buildDunePackage
2 , dune-configurator
3 , alcotest
4 , ctypes
5 , stdio
6 , openblasCompat
7 , owl-base
8 , npy
9 }:
12 buildDunePackage rec {
13   pname = "owl";
15   inherit (owl-base) version src meta;
17   checkInputs = [ alcotest ];
18   buildInputs = [ dune-configurator stdio ];
19   propagatedBuildInputs = [
20     ctypes
21     openblasCompat
22     owl-base
23     npy
24   ];
26   doCheck = false;
27   # Tests fail with Clang: https://github.com/owlbarn/owl/issues/462
28   # and with GCC 13: https://github.com/owlbarn/owl/issues/653