summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/libsupermesh/default.nix
blob: aeb349fbca7aa443c48f5d14a9b747755e43ae0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
  lib,
  pkgs,
  buildPythonPackage,
  fetchFromGitHub,
  scikit-build-core,
  gfortran,
  cmake,
  ninja,
  mpi,
  libspatialindex,
  rtree,
}:

buildPythonPackage {
  inherit (pkgs.libsupermesh)
    pname
    version
    src
    meta
    ;
  pyproject = true;

  build-system = [
    scikit-build-core
  ];

  nativeBuildInputs = [
    gfortran
    cmake
    ninja
    mpi
  ];

  dontUseCmakeConfigure = true;

  buildInputs = [
    libspatialindex
    gfortran.cc.lib
  ];

  dependencies = [
    rtree
  ];

  # Only build tests if not built by scikit-build-core
  doCheck = false;
}