From 3a3d66f9ff213024a720a72b3639bd62ec63a52a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanis=C5=82aw=20Pitucha?= Date: Wed, 21 Sep 2022 10:35:49 +1000 Subject: [PATCH] python310Packages.devito: fix darwin build --- pkgs/development/python-modules/devito/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/devito/default.nix b/pkgs/development/python-modules/devito/default.nix index 2aa669e44a33..2a47f58c6a8e 100644 --- a/pkgs/development/python-modules/devito/default.nix +++ b/pkgs/development/python-modules/devito/default.nix @@ -18,6 +18,8 @@ , pytestCheckHook , matplotlib , pytest-xdist +, gcc +, llvmPackages }: buildPythonPackage rec { @@ -46,7 +48,7 @@ buildPythonPackage rec { -i requirements.txt ''; - checkInputs = [ pytestCheckHook pytest-xdist matplotlib ]; + checkInputs = [ pytestCheckHook pytest-xdist matplotlib gcc ]; # I've had to disable the following tests since they fail while using nix-build, but they do pass # outside the build. They mostly related to the usage of MPI in a sandboxed environment. @@ -88,12 +90,11 @@ buildPythonPackage rec { pyrevolve scipy sympy - ]; + ] ++ lib.optionals stdenv.cc.isClang [ llvmPackages.openmp ]; pythonImportsCheck = [ "devito" ]; meta = with lib; { - broken = stdenv.isDarwin; homepage = "https://www.devitoproject.org/"; description = "Code generation framework for automated finite difference computation"; license = licenses.mit;