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