1{ lib 2, buildPythonPackage 3, fetchPypi 4, lml 5, isPy3k 6}: 7 8buildPythonPackage rec { 9 pname = "pyexcel-io"; 10 version = "0.6.5"; 11 12 disabled = !isPy3k; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "608d8e80da38070d3bb970d132bc47a55dcfd63b4dc03997d93646c5b2ad185b"; 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}