summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pyexcel/default.nix
blob: 68cbb55daa1995a2212c2a1e3e3fba20a206fd4c (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
{
  lib,
  buildPythonPackage,
  chardet,
  fetchPypi,
  lml,
  pyexcel-io,
  setuptools,
  texttable,
}:

buildPythonPackage rec {
  pname = "pyexcel";
  version = "0.7.4";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-y73GBTK7sqIv5DA+gkqqOG7PbcUU0fh9GtA6E4X+5L0=";
  };

  build-system = [ setuptools ];

  dependencies = [
    chardet
    lml
    pyexcel-io
    texttable
  ];

  pythonImportsCheck = [ "pyexcel" ];

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

  meta = {
    description = "Single API for reading, manipulating and writing data in csv, ods, xls, xlsx and xlsm files";
    homepage = "http://docs.pyexcel.org/";
    changelog = "https://github.com/pyexcel/pyexcel/releases/tag/v${version}";
    license = lib.licenses.bsd3;
    maintainers = [ ];
  };
}