python.pkgs.blaze: remove

broken and unmaintained upstream
This commit is contained in:
Frederik Rietdijk 2020-06-07 11:15:01 +02:00
parent 1895ef4dbd
commit d43a33333d
2 changed files with 0 additions and 71 deletions

View file

@ -1,69 +0,0 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytest
, contextlib2
, cytoolz
, dask
, datashape
, flask
, flask-cors
, h5py
, multipledispatch
, numba
, numpy
, pandas
, psutil
, pymongo
, pyyaml
, requests
, sqlalchemy
, tables
, toolz
}:
buildPythonPackage rec {
pname = "blaze";
version = "0.11.3";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
sha256 = "0w916k125058p40cf7i090f75pgv3cqdb8vwjzqhb9r482fa6717";
};
checkInputs = [ pytest ];
propagatedBuildInputs = [
contextlib2
cytoolz
dask
datashape
flask
flask-cors
h5py
multipledispatch
numba
numpy
pandas
psutil
pymongo
pyyaml
requests
sqlalchemy
tables
toolz
];
checkPhase = ''
rm pytest.ini # Not interested in coverage
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 ];
};
}

View file

@ -2100,8 +2100,6 @@ in {
bitstring = callPackage ../development/python-modules/bitstring { };
blaze = callPackage ../development/python-modules/blaze { };
html5-parser = callPackage ../development/python-modules/html5-parser {
inherit (pkgs) pkgconfig;
};