blaze: init at 0.8.2
This commit is contained in:
parent
9d5508d85c
commit
f9e3908397
|
@ -1306,6 +1306,33 @@ let
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
blaze = buildPythonPackage rec {
|
||||||
|
name = "blaze-${version}";
|
||||||
|
version = "0.8.2";
|
||||||
|
|
||||||
|
src = pkgs.fetchurl {
|
||||||
|
url = "https://pypi.python.org/packages/source/b/blaze/${name}.tar.gz";
|
||||||
|
sha256 = "1abedabf2a1e62dd059e0942d60f27337763de26f5e3f61ed55baaf97723b624";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = with self; [
|
||||||
|
numpy
|
||||||
|
pandas
|
||||||
|
datashape
|
||||||
|
odo
|
||||||
|
toolz
|
||||||
|
multipledispatch
|
||||||
|
sqlalchemy9 # sqlalchemy8 should also work
|
||||||
|
psutil
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = https://github.com/ContinuumIO/blaze;
|
||||||
|
description = "Allows Python users a familiar interface to query data living in other data storage systems";
|
||||||
|
license = licenses.bsdOriginal;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
bleach = buildPythonPackage rec {
|
bleach = buildPythonPackage rec {
|
||||||
version = "v1.4";
|
version = "v1.4";
|
||||||
name = "bleach-${version}";
|
name = "bleach-${version}";
|
||||||
|
|
Loading…
Reference in New Issue