Unverified Commit a5ad53da authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python311Packages.agate-excel: equalize content

parent dd6037e8
Loading
Loading
Loading
Loading
+21 −6
Original line number Diff line number Diff line
{ lib, fetchPypi, buildPythonPackage
, agate, openpyxl, xlrd, olefile, pytestCheckHook
{ lib
, fetchPypi
, buildPythonPackage
, agate
, openpyxl
, xlrd
, olefile
, pytestCheckHook
}:

buildPythonPackage rec {
@@ -8,14 +14,23 @@ buildPythonPackage rec {

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-IfrbPmQnGh4OMEiWJl16UUfI6X/UWj/p6J2+3Y2DzuM=";
    hash = "sha256-IfrbPmQnGh4OMEiWJl16UUfI6X/UWj/p6J2+3Y2DzuM=";
  };

  propagatedBuildInputs = [ agate openpyxl xlrd olefile ];
  propagatedBuildInputs = [
    agate
    openpyxl
    xlrd
    olefile
  ];

  nativeCheckInputs = [ pytestCheckHook ];
  nativeCheckInputs = [
    pytestCheckHook
  ];

  pythonImportsCheck = [ "agate" ];
  pythonImportsCheck = [
    "agate"
  ];

  meta = with lib; {
    description = "Adds read support for excel files to agate";