Merge pull request #301034 from flokli/moto-version-bump

parquet-tools: 0.2.14 -> 0.2.16
This commit is contained in:
Florian Klink 2024-04-03 15:47:39 +03:00 committed by GitHub
commit 41a076e9d4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -7,7 +7,7 @@ with python3Packages;
buildPythonApplication rec {
pname = "parquet-tools";
version = "0.2.14";
version = "0.2.16";
format = "pyproject";
@ -15,7 +15,7 @@ buildPythonApplication rec {
owner = "ktrueda";
repo = "parquet-tools";
rev = "refs/tags/${version}";
hash = "sha256-2jIwDsxB+g37zV9hLc2VNC5YuZXTpTmr2aQ72AeHYJo=";
hash = "sha256-mV66R5ejfzH1IasmoyAWAH5vzrnLVVhOqKBMfWKIVY0=";
};
patches = [
@ -52,6 +52,11 @@ buildPythonApplication rec {
thrift
];
# TestGetMetaData.test_inspect shells out to `parquet-tools` CLI entrypoint
preCheck = ''
export PATH=$out/bin:$PATH
'';
nativeCheckInputs = [
moto
pytest-mock
@ -59,9 +64,6 @@ buildPythonApplication rec {
];
disabledTests = [
# These tests try to read Python code as parquet and fail
"test_local_wildcard"
"test_local_and_s3_wildcard_files"
# test file is 2 bytes bigger than expected
"test_excute_simple"
];