python.pkgs.odo: remove
broken and unmaintained upstream
This commit is contained in:
parent
f336f70968
commit
1895ef4dbd
3 changed files with 0 additions and 63 deletions
|
@ -12,7 +12,6 @@
|
||||||
, multipledispatch
|
, multipledispatch
|
||||||
, numba
|
, numba
|
||||||
, numpy
|
, numpy
|
||||||
, odo
|
|
||||||
, pandas
|
, pandas
|
||||||
, psutil
|
, psutil
|
||||||
, pymongo
|
, pymongo
|
||||||
|
@ -46,7 +45,6 @@ buildPythonPackage rec {
|
||||||
multipledispatch
|
multipledispatch
|
||||||
numba
|
numba
|
||||||
numpy
|
numpy
|
||||||
odo
|
|
||||||
pandas
|
pandas
|
||||||
psutil
|
psutil
|
||||||
pymongo
|
pymongo
|
||||||
|
|
|
@ -1,59 +0,0 @@
|
||||||
{ lib
|
|
||||||
, buildPythonPackage
|
|
||||||
, fetchFromGitHub
|
|
||||||
, pytest
|
|
||||||
, datashape
|
|
||||||
, numpy
|
|
||||||
, pandas
|
|
||||||
, toolz
|
|
||||||
, multipledispatch
|
|
||||||
, networkx
|
|
||||||
, dask
|
|
||||||
}:
|
|
||||||
|
|
||||||
buildPythonPackage rec {
|
|
||||||
pname = "odo";
|
|
||||||
version= "unstable-2018-09-21";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "blaze";
|
|
||||||
repo = pname;
|
|
||||||
rev = "9fce6690b3666160681833540de6c55e922de5eb";
|
|
||||||
sha256 = "0givkd5agr05wrf72fbghdaav6gplx7c069ngs1ip385v72ifsl9";
|
|
||||||
};
|
|
||||||
|
|
||||||
checkInputs = [
|
|
||||||
pytest
|
|
||||||
dask
|
|
||||||
];
|
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
|
||||||
datashape
|
|
||||||
numpy
|
|
||||||
pandas
|
|
||||||
toolz
|
|
||||||
multipledispatch
|
|
||||||
networkx
|
|
||||||
];
|
|
||||||
|
|
||||||
postConfigure = ''
|
|
||||||
substituteInPlace setup.py \
|
|
||||||
--replace "versioneer.get_version()" "'0.5.1'"
|
|
||||||
'';
|
|
||||||
|
|
||||||
# disable 6/315 tests
|
|
||||||
checkPhase = ''
|
|
||||||
pytest odo -k "not test_insert_to_ooc \
|
|
||||||
and not test_datetime_index \
|
|
||||||
and not test_different_encoding \
|
|
||||||
and not test_numpy_asserts_type_after_dataframe"
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
homepage = "https://github.com/ContinuumIO/odo";
|
|
||||||
description = "Data migration utilities";
|
|
||||||
license = licenses.bsdOriginal;
|
|
||||||
maintainers = with maintainers; [ fridh costrouc ];
|
|
||||||
broken = true; # no longer compatible with dask>=2.0
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -4824,8 +4824,6 @@ in {
|
||||||
graphvizPkg = pkgs.graphviz;
|
graphvizPkg = pkgs.graphviz;
|
||||||
};
|
};
|
||||||
|
|
||||||
odo = callPackage ../development/python-modules/odo { };
|
|
||||||
|
|
||||||
offtrac = callPackage ../development/python-modules/offtrac { };
|
offtrac = callPackage ../development/python-modules/offtrac { };
|
||||||
|
|
||||||
openpyxl = if pythonAtLeast "3.6" then
|
openpyxl = if pythonAtLeast "3.6" then
|
||||||
|
|
Loading…
Reference in a new issue