1{ lib
2, buildPythonPackage
3, fetchPypi
4, pyexcel-io
5, odfpy
6, nose
7, pyexcel
8, pyexcel-xls
9, psutil
10}:
11
12buildPythonPackage rec {
13 pname = "pyexcel-ods";
14 version = "0.6.0";
15
16 src = fetchPypi {
17 inherit pname version;
18 sha256 = "f61b56515fd4ccd4687f0a112422f74ce8535247ad2da49db90038d7e3ed397c";
19 };
20
21 propagatedBuildInputs = [
22 pyexcel-io
23 odfpy
24 ];
25
26 checkInputs = [
27 nose
28 pyexcel
29 pyexcel-xls
30 psutil
31 ];
32
33 checkPhase = "nosetests";
34
35 meta = {
36 description = "Plug-in to pyexcel providing the capbility to read, manipulate and write data in ods formats using odfpy";
37 homepage = "http://docs.pyexcel.org/";
38 license = lib.licenses.bsd3;
39 maintainers = with lib.maintainers; [ jtojnar ];
40 };
41}