From 51b894301b062857f38dc87eef110fee4ff3c216 Mon Sep 17 00:00:00 2001 From: Artturin Date: Sun, 8 Oct 2023 23:23:09 +0300 Subject: [PATCH] python311Packages.tblite: don't override configure `mesonConfigurePhase` will be used so this is unnecessary --- .../libraries/science/chemistry/tblite/python.nix | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/pkgs/development/libraries/science/chemistry/tblite/python.nix b/pkgs/development/libraries/science/chemistry/tblite/python.nix index f19c3377b178..8bf30f970056 100644 --- a/pkgs/development/libraries/science/chemistry/tblite/python.nix +++ b/pkgs/development/libraries/science/chemistry/tblite/python.nix @@ -47,12 +47,5 @@ buildPythonPackage { format = "other"; pythonImportsCheck = [ "tblite" "tblite.interface" ]; - configurePhase = '' - runHook preConfigure - - meson setup build -Dpython=true --prefix=$out - cd build - - runHook postConfigure - ''; + mesonFlags = [ "-Dpython=true" ]; }