71 lines
1.4 KiB
Nix
71 lines
1.4 KiB
Nix
|
{ lib
|
||
|
, buildPythonPackage
|
||
|
, fetchPypi
|
||
|
, appdirs
|
||
|
, dask
|
||
|
, holoviews
|
||
|
, hvplot
|
||
|
, jinja2
|
||
|
, msgpack-numpy
|
||
|
, msgpack
|
||
|
, numpy
|
||
|
, pandas
|
||
|
, panel
|
||
|
, python-snappy
|
||
|
, requests
|
||
|
, ruamel_yaml
|
||
|
, six
|
||
|
, tornado
|
||
|
, pytest
|
||
|
, pythonOlder
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "intake";
|
||
|
version = "0.5.4";
|
||
|
|
||
|
disabled = pythonOlder "3.6";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "81c3bdadbb81ec10c923b89e118c229d977a584ccbe27466f8fde41c0c274c3f";
|
||
|
};
|
||
|
|
||
|
checkInputs = [ pytest ];
|
||
|
propagatedBuildInputs = [
|
||
|
appdirs
|
||
|
dask
|
||
|
holoviews
|
||
|
hvplot
|
||
|
jinja2
|
||
|
msgpack-numpy
|
||
|
msgpack
|
||
|
numpy
|
||
|
pandas
|
||
|
panel
|
||
|
python-snappy
|
||
|
requests
|
||
|
ruamel_yaml
|
||
|
six
|
||
|
tornado
|
||
|
];
|
||
|
|
||
|
postPatch = ''
|
||
|
# Is in setup_requires but not used in setup.py...
|
||
|
substituteInPlace setup.py --replace "'pytest-runner'" ""
|
||
|
'';
|
||
|
|
||
|
# test_discover requires driver_with_entrypoints-0.1.dist-info, which is not included in tarball
|
||
|
# test_filtered_compressed_cache requires calvert_uk_filter.tar.gz, which is not included in tarball
|
||
|
checkPhase = ''
|
||
|
PATH=$out/bin:$PATH HOME=$(mktemp -d) pytest -k "not test_discover and not test_filtered_compressed_cache"
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Data load and catalog system";
|
||
|
homepage = "https://github.com/ContinuumIO/intake";
|
||
|
license = licenses.bsd2;
|
||
|
maintainers = [ maintainers.costrouc ];
|
||
|
};
|
||
|
}
|