1a04744f74
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
49 lines
1000 B
Nix
49 lines
1000 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
fetchpatch,
|
|
dask,
|
|
distributed,
|
|
mpi4py,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dask-mpi";
|
|
version = "2022.4.0";
|
|
format = "setuptools";
|
|
|
|
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 = {
|
|
description = "Deploy Dask using mpi4py";
|
|
mainProgram = "dask-mpi";
|
|
homepage = "https://github.com/dask/dask-mpi";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = [ ];
|
|
};
|
|
}
|