Skip to content

Commit

Permalink
python3Packages.dask: 2.10.1 -> 2.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FRidh committed Apr 27, 2020
1 parent f7a8dc8 commit 4ffb40b
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions pkgs/development/python-modules/dask/default.nix
Expand Up @@ -3,7 +3,7 @@
, buildPythonPackage
, fetchFromGitHub
, fsspec
, pytest
, pytestCheckHook
, pythonOlder
, cloudpickle
, numpy
Expand All @@ -15,21 +15,23 @@

buildPythonPackage rec {
pname = "dask";
version = "2.10.1";
version = "2.14.0";

disabled = pythonOlder "3.5";

src = fetchFromGitHub {
owner = "dask";
repo = pname;
rev = version;
sha256 = "035mr7385yf5ng5wf60qxr80529h8dsla5hymkyg68dxhkd0jvbr";
sha256 = "0kj46pwzvdw8ii1h45y48wxvjid89yp4cfak2h4b8z8xic73fqgj";
};

checkInputs = [
pytest
pytestCheckHook
];

dontUseSetuptoolsCheck = true;

propagatedBuildInputs = [
bokeh
cloudpickle
Expand All @@ -50,9 +52,10 @@ buildPythonPackage rec {
--replace "cmdclass=versioneer.get_cmdclass()," ""
'';

checkPhase = ''
pytest
'';
disabledTests = [
"test_argwhere_str"
"test_count_nonzero_str"
];

meta = {
description = "Minimal task scheduling abstraction";
Expand Down

0 comments on commit 4ffb40b

Please sign in to comment.