1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 lml,
6 isPy3k,
7}:
8
9buildPythonPackage rec {
10 pname = "pyexcel-io";
11 version = "0.6.6";
12 format = "setuptools";
13
14 disabled = !isPy3k;
15
16 src = fetchPypi {
17 inherit pname version;
18 hash = "sha256-9ghL8a+l+/TGHPffRDcPpROCGvGIsC4+GbXvtm2Klp8=";
19 };
20
21 propagatedBuildInputs = [ lml ];
22
23 # Tests depend on stuff that depends on this.
24 doCheck = false;
25
26 pythonImportsCheck = [ "pyexcel_io" ];
27
28 meta = {
29 description = "One interface to read and write the data in various excel formats, import the data into and export the data from databases";
30 homepage = "http://docs.pyexcel.org/";
31 license = lib.licenses.bsd3;
32 maintainers = with lib.maintainers; [ ];
33 };
34}