about summary refs log tree commit diff
path: root/pkgs/development/python-modules/gpaw/default.nix
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2024-05-18 00:12:56 +0000
committerGitHub <noreply@github.com>2024-05-18 00:12:56 +0000
commit154bc6bfe607be732374fc57554b165e692b77a8 (patch)
tree60ad3d3927c23db46d7c904b3293906d56ef1f7d /pkgs/development/python-modules/gpaw/default.nix
parent58045842897730e7b47c578ad9f175dbf35ad782 (diff)
parent8a33016960fc556929f10df9efae7fb372877441 (diff)
Merge master into haskell-updates
Diffstat (limited to 'pkgs/development/python-modules/gpaw/default.nix')
-rw-r--r--pkgs/development/python-modules/gpaw/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/gpaw/default.nix b/pkgs/development/python-modules/gpaw/default.nix
index 37b12c6f5ed49..033a7a4185973 100644
--- a/pkgs/development/python-modules/gpaw/default.nix
+++ b/pkgs/development/python-modules/gpaw/default.nix
@@ -6,6 +6,7 @@
 , blas
 , lapack
 , mpi
+, fftw
 , scalapack
 , libxc
 , libvdwxc
@@ -89,9 +90,9 @@ in buildPythonPackage rec {
   # execute `rsh` as a side-effect.
   nativeBuildInputs = [ which inetutils ];
 
-  buildInputs = [ blas scalapack libxc libvdwxc ];
+  buildInputs = [ blas scalapack libxc libvdwxc fftw ];
 
-  propagatedBuildInputs = [ ase scipy numpy mpi pyyaml ];
+  propagatedBuildInputs = [ ase scipy numpy (lib.getBin mpi) pyyaml ];
 
   patches = [ ./SetupPath.patch ];