3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #8768 from FRidh/blaze

blaze: init at 0.8.2
This commit is contained in:
Pascal Wittmann 2015-08-15 12:01:17 +02:00
commit 7dbc01792e

View file

@ -1343,6 +1343,33 @@ let
maintainers = with maintainers; [ bjornfor ]; maintainers = with maintainers; [ bjornfor ];
}; };
}; };
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";