Unverified Commit 5350639d authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

Merge pull request #264770 from r-ryantm/auto-update/python311Packages.agate-excel

python311Packages.agate-excel: 0.2.5 -> 0.3.0
parents 2be034af 53d14cc5
Loading
Loading
Loading
Loading
+29 −9
Original line number Diff line number Diff line
{ lib, fetchPypi, buildPythonPackage
, agate, openpyxl, xlrd, olefile, pytestCheckHook
{ lib
, fetchPypi
, buildPythonPackage
, agate
, openpyxl
, xlrd
, olefile
, pytestCheckHook
, pythonOlder
}:

buildPythonPackage rec {
  pname = "agate-excel";
  version = "0.2.5";
  version = "0.3.0";
  format = "setuptools";

  disabled = pythonOlder "3.8";

  src = fetchPypi {
    inherit pname version;
    sha256 = "62315708433108772f7f610ca769996b468a4ead380076dbaf6ffe262831b153";
    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";
    homepage = "https://github.com/wireservice/agate-excel";
    changelog = "https://github.com/wireservice/agate-excel/blob/${version}/CHANGELOG.rst";
    license = licenses.mit;
    maintainers = with maintainers; [ vrthra ];
  };