1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5 setuptools,
6 lml,
7}:
8
9buildPythonPackage rec {
10 pname = "pyexcel-io";
11 version = "0.6.7.1";
12 pyproject = true;
13
14 src = fetchFromGitHub {
15 owner = "pyexcel";
16 repo = "pyexcel-io";
17 tag = "v${version}";
18 hash = "sha256-DBiHHiKXR26/WPJDmEZpRgjvJitFaidbV41Tvn0etLY=";
19 };
20
21 build-system = [ setuptools ];
22
23 dependencies = [ lml ];
24
25 # Tests depend on stuff that depends on this.
26 doCheck = false;
27
28 pythonImportsCheck = [ "pyexcel_io" ];
29
30 meta = {
31 description = "One interface to read and write the data in various excel formats, import the data into and export the data from databases";
32 homepage = "http://docs.pyexcel.org/";
33 license = lib.licenses.bsd3;
34 maintainers = [ ];
35 };
36}