about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/science/chemistry/tblite/python.nix
blob: f19c3377b1785dbe0f6413c1d0c9e8d5078c270d (plain) (blame)
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
49
50
51
52
53
54
55
56
57
58
{ buildPythonPackage
, meson
, ninja
, pkg-config
, tblite
, numpy
, simple-dftd3
, cffi
, gfortran
, blas
, lapack
, mctc-lib
, mstore
, toml-f
, multicharge
, dftd4
}:

buildPythonPackage {
  inherit (tblite) pname version src meta;

  nativeBuildInputs = [
    tblite
    meson
    ninja
    pkg-config
    gfortran
    mctc-lib
  ];

  buildInputs = [
    tblite
    simple-dftd3
    blas
    lapack
    mctc-lib
    mstore
    toml-f
    multicharge
    dftd4
  ];

  propagatedBuildInputs = [ tblite simple-dftd3 cffi numpy ];

  # Add multicharge to the meson deps; otherwise we get missing mod_multicharge errors
  patches = [ ./0001-fix-multicharge-dep-needed-for-static-compilation.patch ];

  format = "other";
  pythonImportsCheck = [ "tblite" "tblite.interface" ];
  configurePhase = ''
    runHook preConfigure

    meson setup build -Dpython=true --prefix=$out
    cd build

    runHook postConfigure
  '';
}