Merge pull request #192156 from viraptor/devito-fix-darwin

python310Packages.devito: fix darwin build
This commit is contained in:
Stanisław Pitucha 2022-10-09 16:13:42 +11:00 committed by GitHub
commit 49a2d51ba2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;