diff --git a/pkgs/development/python-modules/mpi4py/default.nix b/pkgs/development/python-modules/mpi4py/default.nix index aa5a74c2cfe8..d6c5fac48593 100644 --- a/pkgs/development/python-modules/mpi4py/default.nix +++ b/pkgs/development/python-modules/mpi4py/default.nix @@ -2,11 +2,11 @@ buildPythonPackage rec { pname = "mpi4py"; - version = "3.1.3"; + version = "3.1.4"; src = fetchPypi { inherit pname version; - sha256 = "sha256-8en64QefQ+r92fgXzbP9MNcJ7cCTtdXa2lekYbLbMAg="; + sha256 = "sha256-F4WPLrxiMiDQEg0fqNQo0DPd50nEvDWzPYGmatf5NIA="; }; passthru = { @@ -41,11 +41,13 @@ buildPythonPackage rec { setupPyBuildFlags = ["--mpicc=${mpi}/bin/mpicc"]; - nativeBuildInputs = [ mpi openssh ]; + nativeBuildInputs = [ mpi ]; + + checkInputs = [ openssh ]; meta = with lib; { description = "Python bindings for the Message Passing Interface standard"; - homepage = "https://bitbucket.org/mpi4py/mpi4py/"; - license = licenses.bsd3; + homepage = "https://github.com/mpi4py/mpi4py"; + license = licenses.bsd2; }; }