3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.dask: Add dependencies, closes #15901

This commit is contained in:
Tom Hunger 2016-05-31 15:52:48 +01:00 committed by Frederik Rietdijk
parent 8fe8c2a7ec
commit c8f81c08c7

View file

@ -3472,11 +3472,12 @@ in modules // {
buildInputs = with self; [ pytest mock ]; buildInputs = with self; [ pytest mock ];
# See README for tests invocation
checkPhase = '' checkPhase = ''
py.test tests PYTHONPATH=$PYTHONPATH:'.:tests' py.test
''; '';
# ImportError of test suite # TypeError: cannot serialize '_io.FileIO' object
doCheck = false; doCheck = false;
meta = { meta = {
@ -4748,13 +4749,13 @@ in modules // {
}; };
buildInputs = with self; [ pytest ]; buildInputs = with self; [ pytest ];
propagatedBuildInputs = with self; [ numpy toolz dill pandas ]; propagatedBuildInputs = with self; [ cloudpickle numpy toolz dill pandas partd ];
checkPhase = '' checkPhase = ''
py.test dask py.test dask
''; '';
# Segfault, likely in numpy # URLError
doCheck = false; doCheck = false;
meta = { meta = {