mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 16:53:21 +00:00
43b7b778f8
Diff: https://github.com/ktrueda/parquet-tools/compare/refs/tags/0.2.9...0.2.12 Changelog: https://github.com/ktrueda/parquet-tools/releases/tag/0.2.12
73 lines
1.4 KiB
Nix
73 lines
1.4 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3Packages
|
|
}:
|
|
|
|
with python3Packages;
|
|
|
|
buildPythonApplication rec {
|
|
pname = "parquet-tools";
|
|
version = "0.2.12";
|
|
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ktrueda";
|
|
repo = "parquet-tools";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-5bK+kW550DgBhcH5INozwGKKjM+xXblmFg2Tu2rnos4=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace tests/test_inspect.py \
|
|
--replace "parquet-cpp-arrow version 5.0.0" "parquet-cpp-arrow version ${pyarrow.version}" \
|
|
--replace "serialized_size: 2222" "serialized_size: 2221" \
|
|
--replace "format_version: 1.0" "format_version: 2.6"
|
|
'';
|
|
|
|
pythonRelaxDeps = [
|
|
"halo"
|
|
"tabulate"
|
|
"thrift"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
pythonRelaxDepsHook
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
boto3
|
|
colorama
|
|
halo
|
|
pandas
|
|
pyarrow
|
|
tabulate
|
|
thrift
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
moto
|
|
pytest-mock
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = [
|
|
# These tests try to read Python code as parquet and fail
|
|
"test_local_wildcard"
|
|
"test_local_and_s3_wildcard_files"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"parquet_tools"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A CLI tool for parquet files";
|
|
homepage = "https://github.com/ktrueda/parquet-tools";
|
|
changelog = "https://github.com/ktrueda/parquet-tools/releases/tag/${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ cpcloud ];
|
|
};
|
|
}
|