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