Files
nixpkgs/pkgs/development/python-modules/pyexcel/default.nix
2025-10-10 09:22:49 +02:00

45 lines
928 B
Nix

{
lib,
buildPythonPackage,
chardet,
fetchPypi,
lml,
pyexcel-io,
setuptools,
texttable,
}:
buildPythonPackage rec {
pname = "pyexcel";
version = "0.7.3";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-V7PD+1XdCaYsu/Kunx54qhG2J8K/xgcv8tlYfAIrBtQ=";
};
build-system = [ setuptools ];
dependencies = [
chardet
lml
pyexcel-io
texttable
];
pythonImportsCheck = [ "pyexcel" ];
# Tests depend on pyexcel-xls & co. causing circular dependency.
# https://github.com/pyexcel/pyexcel/blob/dev/tests/requirements.txt
doCheck = false;
meta = {
description = "Single API for reading, manipulating and writing data in csv, ods, xls, xlsx and xlsm files";
homepage = "http://docs.pyexcel.org/";
changelog = "https://github.com/pyexcel/pyexcel/releases/tag/v${version}";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}