{ lib , buildPythonPackage , fetchPypi , pytest , jdcal , et_xmlfile , lxml }: buildPythonPackage rec { pname = "openpyxl"; version = "2.5.3"; name = "${pname}-${version}"; src = fetchPypi { inherit pname version; sha256 = "0046fca88d6731875a385bf7edd689d7c4133f829203ea615a81291de3fa48b6"; }; checkInputs = [ pytest ]; propagatedBuildInputs = [ jdcal et_xmlfile lxml ]; # Tests are not included in archive. # https://bitbucket.org/openpyxl/openpyxl/issues/610 doCheck = false; meta = { description = "A Python library to read/write Excel 2007 xlsx/xlsm files"; homepage = https://openpyxl.readthedocs.org; license = lib.licenses.mit; maintainers = with lib.maintainers; [ lihop sjourdois ]; }; }