Skip to content

Commit

Permalink
Merge pull request #301034 from flokli/moto-version-bump
Browse files Browse the repository at this point in the history
parquet-tools: 0.2.14 -> 0.2.16
  • Loading branch information
flokli authored Apr 3, 2024
2 parents 96c997b + b33c8f4 commit 41a076e
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions pkgs/tools/misc/parquet-tools/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ with python3Packages;

buildPythonApplication rec {
pname = "parquet-tools";
version = "0.2.14";
version = "0.2.16";

format = "pyproject";

src = fetchFromGitHub {
owner = "ktrueda";
repo = "parquet-tools";
rev = "refs/tags/${version}";
hash = "sha256-2jIwDsxB+g37zV9hLc2VNC5YuZXTpTmr2aQ72AeHYJo=";
hash = "sha256-mV66R5ejfzH1IasmoyAWAH5vzrnLVVhOqKBMfWKIVY0=";
};

patches = [
Expand Down Expand Up @@ -52,16 +52,18 @@ buildPythonApplication rec {
thrift
];

# TestGetMetaData.test_inspect shells out to `parquet-tools` CLI entrypoint
preCheck = ''
export PATH=$out/bin:$PATH
'';

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"
# test file is 2 bytes bigger than expected
"test_excute_simple"
];
Expand Down

0 comments on commit 41a076e

Please sign in to comment.