Files
nixpkgs/pkgs/development/python-modules/agate-excel/default.nix
T
Martin Weinelt 8f280085fb python3Packages.agate-excel: 0.4.1 -> 0.4.2
https://github.com/wireservice/agate-excel/blob/0.4.2/CHANGELOG.rst

This commit was automatically generated using update-python-libraries.
2026-02-01 16:40:38 +01:00

46 lines
895 B
Nix

{
lib,
fetchFromGitHub,
buildPythonPackage,
setuptools,
agate,
openpyxl,
xlrd,
olefile,
pytestCheckHook,
}:
buildPythonPackage (finalAttrs: {
pname = "agate-excel";
version = "0.4.2";
pyproject = true;
src = fetchFromGitHub {
owner = "wireservice";
repo = "agate-excel";
tag = finalAttrs.version;
hash = "sha256-sKy7NaRhJ4KYOOUKuNs0SGutUn8XEmSeQFQ/57gTGCg=";
};
build-system = [ setuptools ];
dependencies = [
agate
openpyxl
xlrd
olefile
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "agate" ];
meta = {
description = "Adds read support for excel files to agate";
homepage = "https://github.com/wireservice/agate-excel";
changelog = "https://github.com/wireservice/agate-excel/blob/${finalAttrs.src.tag}/CHANGELOG.rst";
license = lib.licenses.mit;
maintainers = [ ];
};
})