python311Packages.agate-excel: equalize content

This commit is contained in:
Fabian Affolter 2023-11-02 08:10:26 +01:00 committed by GitHub
parent dd6037e8f4
commit a5ad53dad8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,11 @@
{ 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";