python3Packages.agate-excel: add missing olefile dep

This commit is contained in:
Luke Granger-Brown 2021-09-11 03:08:43 +00:00
parent fc77b402c0
commit b44357045a

View File

@ -1,5 +1,5 @@
{ lib, fetchPypi, buildPythonPackage
, agate, openpyxl, xlrd, pytestCheckHook
, agate, openpyxl, xlrd, olefile, pytestCheckHook
}:
buildPythonPackage rec {
@ -11,7 +11,7 @@ buildPythonPackage rec {
sha256 = "62315708433108772f7f610ca769996b468a4ead380076dbaf6ffe262831b153";
};
propagatedBuildInputs = [ agate openpyxl xlrd ];
propagatedBuildInputs = [ agate openpyxl xlrd olefile ];
checkInputs = [ pytestCheckHook ];