mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
Merge pull request #199653 from r-ryantm/auto-update/python3.10-mpi4py
python310Packages.mpi4py: 3.1.3 -> 3.1.4
This commit is contained in:
commit
28cf74405f
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue