depot/third_party/nixpkgs/pkgs/development/python-modules/pytablewriter/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

113 lines
2.1 KiB
Nix

{
lib,
buildPythonPackage,
dataproperty,
dominate,
elasticsearch,
fetchFromGitHub,
loguru,
mbstrdecoder,
pandas,
pathvalidate,
pytestCheckHook,
pythonOlder,
pyyaml,
setuptools,
simplejson,
tabledata,
tcolorpy,
toml,
typepy,
xlsxwriter,
xlwt,
}:
buildPythonPackage rec {
pname = "pytablewriter";
version = "1.2.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "thombashi";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-b3YzDqNATaT/FFG4/x9EGlYlhXKPvgNB2xnm0bzvLJQ=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
dataproperty
mbstrdecoder
pathvalidate
tabledata
tcolorpy
typepy
];
passthru.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.flatten (builtins.attrValues passthru.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 = with lib; {
description = "Library to write a table in various formats";
homepage = "https://github.com/thombashi/pytablewriter";
changelog = "https://github.com/thombashi/pytablewriter/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ genericnerdyusername ];
};
}