about summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorPascal Wittmann <PascalWittmann@gmx.net>2015-08-15 12:01:17 +0200
committerPascal Wittmann <PascalWittmann@gmx.net>2015-08-15 12:01:17 +0200
commit7dbc01792e15b07e82cbd0485dbafd5a83330a70 (patch)
treef7369cbc632a0351f4751547601efda6a5a48ad9 /pkgs/top-level
parentf3038b694d40865fbc40808130d332a798f65f25 (diff)
parentf9e3908397bcf5b74f0ef1a48d6b99d87095008f (diff)
Merge pull request #8768 from FRidh/blaze
blaze: init at 0.8.2
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/python-packages.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index fb06d79ca1210..379c245d95919 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -1343,6 +1343,33 @@ let
       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 {
     version = "v1.4";