python3Packages.intake: 0.6.3 -> 0.6.4

conduit-nginx
Fabian Affolter 2021-10-22 15:41:55 +02:00
parent 840f7a2269
commit 5c46d745d5
1 changed files with 28 additions and 20 deletions

View File

@ -1,67 +1,71 @@
{ lib { lib
, buildPythonPackage
, fetchPypi
, appdirs , appdirs
, bokeh
, buildPythonPackage
, dask , dask
, entrypoints
, fetchFromGitHub
, fsspec
, holoviews , holoviews
, hvplot , hvplot
, fsspec , intake-parquet
, jinja2 , jinja2
, msgpack , msgpack
, msgpack-numpy , msgpack-numpy
, numpy , numpy
, pandas , pandas
, panel , panel
, intake-parquet
, pyarrow , pyarrow
, pytestCheckHook , pytestCheckHook
, pythonOlder
, python-snappy , python-snappy
, pythonOlder
, pyyaml
, requests , requests
, ruamel_yaml
, six
, tornado , tornado
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "intake"; pname = "intake";
version = "0.6.3"; version = "0.6.4";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchFromGitHub {
inherit pname version; owner = pname;
sha256 = "f64543353f30d9440b953984f78b7a0954e5756d70c64243609d307ba488014f"; repo = pname;
rev = version;
sha256 = "194cdd6lx92zcpkn3wgm490kxvw0c58ziix8hcihsr5ayfr1wdsl";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
appdirs appdirs
bokeh
dask dask
entrypoints
fsspec
holoviews holoviews
hvplot hvplot
jinja2 jinja2
msgpack-numpy
msgpack msgpack
msgpack-numpy
numpy numpy
pandas pandas
panel panel
pyarrow
python-snappy python-snappy
pyyaml
requests requests
ruamel_yaml
six
tornado tornado
]; ];
checkInputs = [ checkInputs = [
fsspec
intake-parquet intake-parquet
pyarrow
pytestCheckHook pytestCheckHook
]; ];
postPatch = '' postPatch = ''
# Is in setup_requires but not used in setup.py... substituteInPlace setup.py \
substituteInPlace setup.py --replace "'pytest-runner'" "" --replace "'pytest-runner'" ""
''; '';
# test_discover requires driver_with_entrypoints-0.1.dist-info, which is not included in tarball # test_discover requires driver_with_entrypoints-0.1.dist-info, which is not included in tarball
@ -72,7 +76,7 @@ buildPythonPackage rec {
''; '';
disabledTests = [ disabledTests = [
# disable tests which touch network and are broken # Disable tests which touch network and are broken
"test_discover" "test_discover"
"test_filtered_compressed_cache" "test_filtered_compressed_cache"
"test_get_dir" "test_get_dir"
@ -82,6 +86,10 @@ buildPythonPackage rec {
"test_remote_arr" "test_remote_arr"
]; ];
pythonImportsCheck = [
"intake"
];
meta = with lib; { meta = with lib; {
description = "Data load and catalog system"; description = "Data load and catalog system";
homepage = "https://github.com/ContinuumIO/intake"; homepage = "https://github.com/ContinuumIO/intake";