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

69 lines
1.1 KiB
Nix
Raw Normal View History

2017-07-29 09:55:11 +00:00
{ lib
, buildPythonPackage
, fetchurl
, pytest
, contextlib2
, cytoolz
, dask
, datashape
, flask
, flask-cors
, h5py
, multipledispatch
, numba
, numpy
, odo
, pandas
, psutil
, pymongo
, pyyaml
, requests
, sqlalchemy
, tables
, toolz
}:
buildPythonPackage rec {
pname = "blaze";
2018-01-01 15:35:26 +00:00
version = "0.11.3";
2017-07-29 09:55:11 +00:00
src = fetchurl {
url = "https://github.com/blaze/blaze/archive/${version}.tar.gz";
2018-01-01 15:35:26 +00:00
sha256 = "075gqc9d7g284z4nfwv5zbq99ln22w25l4lcndjg3v10kmsjadww";
2017-07-29 09:55:11 +00:00
};
checkInputs = [ pytest ];
propagatedBuildInputs = [
contextlib2
cytoolz
dask
datashape
flask
flask-cors
h5py
multipledispatch
numba
numpy
odo
pandas
psutil
pymongo
pyyaml
requests
sqlalchemy
tables
toolz
];
checkPhase = ''
2018-01-01 15:35:26 +00:00
rm pytest.ini # Not interested in coverage
2017-07-29 09:55:11 +00:00
py.test blaze/tests
'';
meta = {
homepage = https://github.com/ContinuumIO/blaze;
description = "Allows Python users a familiar interface to query data living in other data storage systems";
license = lib.licenses.bsdOriginal;
maintainers = with lib.maintainers; [ fridh ];
};
}