forked from mirrors/nixpkgs
pythonPackages.dask: Add dependencies, closes #15901
This commit is contained in:
parent
8fe8c2a7ec
commit
c8f81c08c7
|
@ -3472,11 +3472,12 @@ in modules // {
|
|||
|
||||
buildInputs = with self; [ pytest mock ];
|
||||
|
||||
# See README for tests invocation
|
||||
checkPhase = ''
|
||||
py.test tests
|
||||
PYTHONPATH=$PYTHONPATH:'.:tests' py.test
|
||||
'';
|
||||
|
||||
# ImportError of test suite
|
||||
# TypeError: cannot serialize '_io.FileIO' object
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
|
@ -4748,13 +4749,13 @@ in modules // {
|
|||
};
|
||||
|
||||
buildInputs = with self; [ pytest ];
|
||||
propagatedBuildInputs = with self; [ numpy toolz dill pandas ];
|
||||
propagatedBuildInputs = with self; [ cloudpickle numpy toolz dill pandas partd ];
|
||||
|
||||
checkPhase = ''
|
||||
py.test dask
|
||||
'';
|
||||
|
||||
# Segfault, likely in numpy
|
||||
# URLError
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
|
|
Loading…
Reference in a new issue