mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
Merge pull request #301034 from flokli/moto-version-bump
parquet-tools: 0.2.14 -> 0.2.16
This commit is contained in:
commit
41a076e9d4
|
@ -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"
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue