aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/pyexcel/default.nix
blob: ca562ca5586b39cc2d967c6c15f6ec381dfc736e (plain)
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
45
46
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, lml
, pyexcel-io
, texttable
, nose
}:

buildPythonPackage rec {
  pname = "pyexcel";
  version = "0.6.6";

  disabled = !isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "39b0bb8f033d9b5523b126cf5a5259d1990ea82b8a23c8eab7aa5e23116803df";
  };

  propagatedBuildInputs = [
    lml
    pyexcel-io
    texttable
  ];

  checkInputs = [
    nose
  ];

  # Tests depend on pyexcel-xls & co. causing circular dependency.
  # https://github.com/pyexcel/pyexcel/blob/dev/tests/requirements.txt
  doCheck = false;

  pythonImportsCheck = [ "pyexcel" ];

  checkPhase = "nosetests";

  meta = {
    description = "Single API for reading, manipulating and writing data in csv, ods, xls, xlsx and xlsm files";
    homepage = "http://docs.pyexcel.org/";
    license = lib.licenses.bsd3;
    maintainers = with lib.maintainers; [ jtojnar ];
  };
}