{ lib , buildPythonPackage , fetchPypi , pytest , jdcal , et_xmlfile , lxml }: buildPythonPackage rec { pname = "openpyxl"; version = "2.5.1"; name = "${pname}-${version}"; src = fetchPypi { inherit pname version; sha256 = "c875fbefae29c4ac9ceaa88470b682834495173cbe9cd37e7286285b7fbc2602"; }; 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 ]; }; }