summary refs log tree commit diff
path: root/pkgs/development/python-modules/odo/default.nix
blob: f18420b676b7d408d6be6666c62ee0bae2034b94 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytest
, datashape
, numpy
, pandas
, toolz
, multipledispatch
, networkx
, dask
}:

buildPythonPackage rec {
  pname = "odo";
  version= "0.5.1";


  src = fetchFromGitHub {
    owner = "blaze";
    repo = pname;
    rev = version;
    sha256 = "142f4jvaqjn0dq6rvlk7d7mzcmc255a9z4nxc1b3a862hp4gvijs";
  };

  checkInputs = [ pytest dask ];
  propagatedBuildInputs = [ datashape numpy pandas toolz multipledispatch networkx ];

  # Disable failing tests
  # https://github.com/blaze/odo/issues/609
  checkPhase = ''
    py.test -k "not test_numpy_asserts_type_after_dataframe" odo/tests
  '';

  meta = {
    homepage = https://github.com/ContinuumIO/odo;
    description = "Data migration utilities";
    license = lib.licenses.bsdOriginal;
    maintainers = with lib.maintainers; [ fridh ];
    # incomaptible with Networkx 2
    # see https://github.com/blaze/odo/pull/601
    broken = true;
  };
}