mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 00:24:18 +00:00
51ef95e6fa
Using such an option within the package set this way will result in different packages depending on different versions of dask and thereby collisions. Instead, we can simply declare in the package offering the extras the packages the extra needs.
102 lines
1.8 KiB
Nix
102 lines
1.8 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, dask
|
|
, bokeh
|
|
, toolz
|
|
, datashape
|
|
, numba
|
|
, numpy
|
|
, pandas
|
|
, pillow
|
|
, xarray
|
|
, colorcet
|
|
, param
|
|
, pyct
|
|
, scipy
|
|
, pytestCheckHook
|
|
, nbsmoke
|
|
, fastparquet
|
|
, nbconvert
|
|
, pytest-xdist
|
|
, netcdf4
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "datashader";
|
|
version = "0.13.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-6JscHm1QjDmXOLLa83qhAvY/xwvlPM6duQ1lSxnCVV8=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
dask
|
|
bokeh
|
|
toolz
|
|
datashape
|
|
numba
|
|
numpy
|
|
pandas
|
|
pillow
|
|
xarray
|
|
colorcet
|
|
param
|
|
pyct
|
|
scipy
|
|
] ++ dask.extras-require.complete;
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
pytest-xdist
|
|
nbsmoke
|
|
fastparquet
|
|
nbconvert
|
|
netcdf4
|
|
];
|
|
|
|
# The complete extra is for usage with conda, which we
|
|
# don't care about
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "dask[complete]" "dask" \
|
|
--replace "xarray >=0.9.6" "xarray"
|
|
'';
|
|
|
|
preCheck = ''
|
|
export HOME=$TMPDIR
|
|
'';
|
|
|
|
pytestFlagsArray = [
|
|
"-n $NIX_BUILD_CORES"
|
|
"datashader"
|
|
];
|
|
|
|
disabledTests = [
|
|
# Not compatible with current version of bokeh
|
|
# see: https://github.com/holoviz/datashader/issues/1031
|
|
"test_interactive_image_update"
|
|
# Latest dask broken array marshalling
|
|
# see: https://github.com/holoviz/datashader/issues/1032
|
|
"test_raster_quadmesh_autorange_reversed"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# 31/50 tests fail with TypeErrors
|
|
"datashader/tests/test_datatypes.py"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"datashader"
|
|
];
|
|
|
|
meta = with lib;{
|
|
description = "Data visualization toolchain based on aggregating into a grid";
|
|
homepage = "https://datashader.org";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ costrouc ];
|
|
};
|
|
}
|