nixpkgs/pkgs/development/python-modules/pyexcel/default.nix
Martin Weinelt 0ab425dfbf
python3Packages.pyexcel: 0.7.1 -> 0.7.2
This commit was automatically generated using update-python-libraries.
2025-04-03 23:12:51 +02:00

43 lines
848 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
isPy3k,
chardet,
lml,
pyexcel-io,
texttable,
}:
buildPythonPackage rec {
pname = "pyexcel";
version = "0.7.2";
format = "setuptools";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
hash = "sha256-oNbreI6wboGhtDjA58AP7ggEZfM5f7z/5c7DSuvmoyo=";
};
propagatedBuildInputs = [
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/";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}