summary refs log tree commit diff
path: root/pkgs/development/libraries/science/chemistry/tblite/python.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/science/chemistry/tblite/python.nix')
-rw-r--r--pkgs/development/libraries/science/chemistry/tblite/python.nix23
1 files changed, 13 insertions, 10 deletions
diff --git a/pkgs/development/libraries/science/chemistry/tblite/python.nix b/pkgs/development/libraries/science/chemistry/tblite/python.nix
index f19c3377b17..3a72cfaaa6a 100644
--- a/pkgs/development/libraries/science/chemistry/tblite/python.nix
+++ b/pkgs/development/libraries/science/chemistry/tblite/python.nix
@@ -1,4 +1,5 @@
 { buildPythonPackage
+, fetchpatch
 , meson
 , ninja
 , pkg-config
@@ -42,17 +43,19 @@ buildPythonPackage {
 
   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
+  patches = [
+    # Add multicharge to the meson deps; otherwise we get missing mod_multicharge errors
+    ./0001-fix-multicharge-dep-needed-for-static-compilation.patch
 
-    meson setup build -Dpython=true --prefix=$out
-    cd build
+    # Toml-f 0.4.0 compatibility https://github.com/tblite/tblite/pull/108
+    (fetchpatch {
+      url = "https://github.com/tblite/tblite/commit/e4255519b58a5198a5fa8f3073bef1c78a4bbdbe.diff";
+      hash = "sha256-BMwYsdWfK+vG3BFgzusLYfwo0WXrYSPxJoEJIyOvbPg=";
+    })
+  ];
 
-    runHook postConfigure
-  '';
+  format = "other";
+  pythonImportsCheck = [ "tblite" "tblite.interface" ];
+  mesonFlags = [ "-Dpython=true" ];
 }