nixpkgs/pkgs/development/python-modules/intake/default.nix

72 lines
1.4 KiB
Nix
Raw Normal View History

2019-02-24 16:23:55 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, appdirs
, dask
, holoviews
2019-09-01 08:32:43 +02:00
, hvplot
2019-02-24 16:23:55 +01:00
, jinja2
, msgpack-numpy
, msgpack
2019-02-24 16:23:55 +01:00
, numpy
, pandas
2019-09-01 08:32:43 +02:00
, panel
2020-05-11 23:18:05 +02:00
, pyarrow
2019-02-24 16:23:55 +01:00
, python-snappy
, requests
, ruamel_yaml
, six
, tornado
, pytest
2019-09-01 08:32:43 +02:00
, pythonOlder
2019-02-24 16:23:55 +01:00
}:
buildPythonPackage rec {
pname = "intake";
2020-06-06 08:47:14 +02:00
version = "0.6.0";
2019-09-01 08:32:43 +02:00
disabled = pythonOlder "3.6";
2019-02-24 16:23:55 +01:00
src = fetchPypi {
inherit pname version;
2020-06-06 08:47:14 +02:00
sha256 = "0c284abeb74927a7366dcab6cefc010c4d050365b8af61c37326a2473a490a4e";
2019-02-24 16:23:55 +01:00
};
2020-05-11 23:18:05 +02:00
checkInputs = [ pyarrow pytest ];
2019-02-24 16:23:55 +01:00
propagatedBuildInputs = [
appdirs
dask
holoviews
2019-09-01 08:32:43 +02:00
hvplot
2019-02-24 16:23:55 +01:00
jinja2
msgpack-numpy
msgpack
2019-02-24 16:23:55 +01:00
numpy
pandas
2019-09-01 08:32:43 +02:00
panel
2019-02-24 16:23:55 +01:00
python-snappy
requests
ruamel_yaml
six
tornado
];
2019-09-01 08:32:43 +02:00
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
2019-02-24 16:23:55 +01:00
checkPhase = ''
2019-09-01 08:32:43 +02:00
PATH=$out/bin:$PATH HOME=$(mktemp -d) pytest -k "not test_discover and not test_filtered_compressed_cache"
2019-02-24 16:23:55 +01:00
'';
meta = with lib; {
description = "Data load and catalog system";
homepage = "https://github.com/ContinuumIO/intake";
2019-02-24 16:23:55 +01:00
license = licenses.bsd2;
maintainers = [ maintainers.costrouc ];
};
}