intake: 0.4.4 -> 0.5.3 (#66412)
This commit is contained in:
@@ -4,28 +4,31 @@
|
||||
, appdirs
|
||||
, dask
|
||||
, holoviews
|
||||
, hvplot
|
||||
, jinja2
|
||||
, msgpack-numpy
|
||||
, msgpack-python
|
||||
, numpy
|
||||
, pandas
|
||||
, panel
|
||||
, python-snappy
|
||||
, requests
|
||||
, ruamel_yaml
|
||||
, six
|
||||
, tornado
|
||||
, pytest
|
||||
, isPy27
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "intake";
|
||||
version = "0.4.4";
|
||||
disabled = isPy27;
|
||||
version = "0.5.3";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "3fc1b7c2949c9b4200ecbbfdff17da126981a1d8d95ccb7b7bcca3e3dd849d5e";
|
||||
sha256 = "1mbjr4xl4i523bg8k08s5986v2289fznd8cr3j3czn5adi8519j7";
|
||||
};
|
||||
|
||||
checkInputs = [ pytest ];
|
||||
@@ -33,11 +36,13 @@ buildPythonPackage rec {
|
||||
appdirs
|
||||
dask
|
||||
holoviews
|
||||
hvplot
|
||||
jinja2
|
||||
msgpack-numpy
|
||||
msgpack-python
|
||||
numpy
|
||||
pandas
|
||||
panel
|
||||
python-snappy
|
||||
requests
|
||||
ruamel_yaml
|
||||
@@ -45,10 +50,15 @@ buildPythonPackage rec {
|
||||
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 = ''
|
||||
# test_filtered_compressed_cache requires calvert_uk_filter.tar.gz, which is not included in tarball
|
||||
# test_which assumes python for executable name
|
||||
PATH=$out/bin:$PATH HOME=$(mktemp -d) pytest -k "not test_filtered_compressed_cache and not test_which"
|
||||
PATH=$out/bin:$PATH HOME=$(mktemp -d) pytest -k "not test_discover and not test_filtered_compressed_cache"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
|
||||
Reference in New Issue
Block a user