python310Packages.dask: 2022.05.0 -> 2022.05.2

This commit is contained in:
Fabian Affolter 2022-06-03 20:25:55 +02:00 committed by Jonathan Ringer
parent e3873e7f7e
commit e18f93caed
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0

View file

@ -21,11 +21,12 @@
, pyyaml
, scipy
, toolz
, zarr
}:
buildPythonPackage rec {
pname = "dask";
version = "2022.05.0";
version = "2022.05.2";
format = "setuptools";
disabled = pythonOlder "3.7";
@ -34,7 +35,7 @@ buildPythonPackage rec {
owner = "dask";
repo = pname;
rev = version;
hash = "sha256-HFRi08RujlwatCPIRaVr9aBZRq9wBx5JRZrELB3hZks=";
hash = "sha256-8M70Pf31PhYnBPRhSG55eWg6gK0lxsIFKF+cRCsf0/U=";
};
propagatedBuildInputs = [
@ -50,6 +51,9 @@ buildPythonPackage rec {
array = [
numpy
];
complete = [
distributed
];
dataframe = [
numpy
pandas
@ -70,6 +74,7 @@ buildPythonPackage rec {
pytest-rerunfailures
pytest-xdist
scipy
zarr
];
dontUseSetuptoolsCheck = true;
@ -92,12 +97,19 @@ buildPythonPackage rec {
"--reruns 3"
# Don't run tests that require network access
"-m 'not network'"
# Ignore warning about pyarrow 5.0.0 feautres
"-W"
"ignore::FutureWarning"
];
disabledTests = lib.optionals stdenv.isDarwin [
# Test requires features of python3Packages.psutil that are
# blocked in sandboxed-builds
"test_auto_blocksize_csv"
# AttributeError: 'str' object has no attribute 'decode'
"test_read_dir_nometa"
] ++ [
"test_chunksize_files"
];
__darwinAllowLocalNetworking = true;
@ -113,10 +125,6 @@ buildPythonPackage rec {
"dask.diagnostics"
];
passthru.optional-dependencies = {
complete = [ distributed ];
};
meta = with lib; {
description = "Minimal task scheduling abstraction";
homepage = "https://dask.org/";