nixpkgs/pkgs/development/python-modules/pytablewriter/default.nix
Michael Daniels f6d71bf3bd
maintainers: drop genericnerdyusername
Per their profile, no nixpkgs activity since December 2023.
2026-01-12 16:49:33 -05:00

111 lines
2 KiB
Nix

{
lib,
buildPythonPackage,
dataproperty,
dominate,
elasticsearch,
fetchFromGitHub,
loguru,
mbstrdecoder,
pandas,
pathvalidate,
pytestCheckHook,
pyyaml,
setuptools-scm,
simplejson,
tabledata,
tcolorpy,
toml,
typepy,
xlsxwriter,
xlwt,
}:
buildPythonPackage rec {
pname = "pytablewriter";
version = "1.2.1";
pyproject = true;
src = fetchFromGitHub {
owner = "thombashi";
repo = "pytablewriter";
tag = "v${version}";
hash = "sha256-YuuSMKTSG3oybvA6TDWNnGg4EiDAw2tRlM0S9mBQlkc=";
};
build-system = [ setuptools-scm ];
dependencies = [
dataproperty
mbstrdecoder
pathvalidate
tabledata
tcolorpy
typepy
];
optional-dependencies = {
all = [
dominate
elasticsearch
loguru
pandas
# pytablereader
pyyaml
simplejson
toml
xlsxwriter
xlwt
];
es = [ elasticsearch ];
es8 = [ elasticsearch ];
excel = [
xlwt
xlsxwriter
];
html = [ dominate ];
logging = [ loguru ];
# from = [
# pytablereader
# ];
pandas = [ pandas ];
# sqlite = [
# simplesqlite
# ];
# theme = [
# pytablewriter-altrow-theme
# ];
toml = [ toml ];
yaml = [ pyyaml ];
};
nativeCheckInputs = [
pytestCheckHook
]
++ lib.concatAttrValues optional-dependencies;
pythonImportsCheck = [ "pathvalidate" ];
disabledTests = [
# Circular dependency
"test_normal_from_file"
"test_normal_from_text"
"test_normal_clear_theme"
# Test compares CLI output
"test_normal"
];
disabledTestPaths = [
"test/writer/binary/test_excel_writer.py"
"test/writer/binary/test_sqlite_writer.py"
"test/writer/test_elasticsearch_writer.py"
];
meta = {
description = "Library to write a table in various formats";
homepage = "https://github.com/thombashi/pytablewriter";
changelog = "https://github.com/thombashi/pytablewriter/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = [ ];
};
}