1{ lib
2, buildPythonPackage
3, fetchPypi
4, lml
5, isPy3k
6}:
7
8buildPythonPackage rec {
9 pname = "pyexcel-io";
10 version = "0.6.6";
11
12 disabled = !isPy3k;
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "sha256-9ghL8a+l+/TGHPffRDcPpROCGvGIsC4+GbXvtm2Klp8=";
17 };
18
19 propagatedBuildInputs = [
20 lml
21 ];
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; [ jtojnar ];
33 };
34}