Merge pull request #120318 from dotlambda/dask-glm-fix
python3Packages.dask*: various improvements
This commit is contained in:
commit
1c16013bd6
3 changed files with 8 additions and 10 deletions
|
@ -8,7 +8,7 @@
|
|||
, setuptools-scm
|
||||
, scipy
|
||||
, scikitlearn
|
||||
, pytest
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -21,13 +21,9 @@ buildPythonPackage rec {
|
|||
};
|
||||
|
||||
nativeBuildInputs = [ setuptools-scm ];
|
||||
checkInputs = [ pytest ];
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
propagatedBuildInputs = [ cloudpickle dask numpy toolz multipledispatch scipy scikitlearn ];
|
||||
|
||||
checkPhase = ''
|
||||
py.test dask_glm
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/dask/dask-glm/";
|
||||
description = "Generalized Linear Models with Dask";
|
||||
|
|
|
@ -26,6 +26,10 @@ buildPythonPackage rec {
|
|||
sha256 = "8fc4ac3ec1915e382fb8cae9ff1ec9b5ac1bee0b6f4c6975d6e6cb7191a4a815";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools-scm
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
dask
|
||||
dask-glm
|
||||
|
@ -39,7 +43,6 @@ buildPythonPackage rec {
|
|||
scipy
|
||||
six
|
||||
toolz
|
||||
setuptools-scm
|
||||
];
|
||||
|
||||
# has non-standard build from source, and pypi doesn't include tests
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, bokeh
|
||||
, buildPythonPackage
|
||||
, fetchpatch
|
||||
|
@ -77,9 +78,7 @@ buildPythonPackage rec {
|
|||
"-m 'not network'"
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
"test_annotation_pack_unpack"
|
||||
"test_annotations_blockwise_unpack"
|
||||
disabledTests = lib.optionals stdenv.isDarwin [
|
||||
# this test requires features of python3Packages.psutil that are
|
||||
# blocked in sandboxed-builds
|
||||
"test_auto_blocksize_csv"
|
||||
|
|
Loading…
Reference in a new issue