nixpkgs/pkgs/development/python-modules/dask-mpi/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

52 lines
1.0 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
fetchpatch,
dask,
distributed,
mpi4py,
pythonOlder,
}:
buildPythonPackage rec {
pname = "dask-mpi";
version = "2022.4.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-CgTx19NaBs3/UGWTMw1EFOokLJFySYzhkfV0LqxJnhc=";
};
patches = [
# https://github.com/dask/dask-mpi/pull/123
(fetchpatch {
name = "fix-versioneer-on-python312.patch";
url = "https://github.com/dask/dask-mpi/pull/123/commits/0f3b0286b7e29b5d5475561a148dc398108fc259.patch";
hash = "sha256-xXADCSIhq1ARny2twzrhR1J8LkMFWFl6tmGxrM8RvkU=";
})
];
propagatedBuildInputs = [
dask
distributed
mpi4py
];
# Hardcoded mpirun path in tests
doCheck = false;
pythonImportsCheck = [ "dask_mpi" ];
meta = with lib; {
description = "Deploy Dask using mpi4py";
mainProgram = "dask-mpi";
homepage = "https://github.com/dask/dask-mpi";
license = licenses.bsd3;
maintainers = [ ];
};
}