Commit 9ca82599 authored by Phillip Cloud's avatar Phillip Cloud Committed by Yt
Browse files

datafusion-cli: 15.0.0 -> 22.0.0

parent d5946bd4
Loading
Loading
Loading
Loading
+8 −4
Original line number Diff line number Diff line
@@ -7,17 +7,19 @@

rustPlatform.buildRustPackage rec {
  pname = "datafusion-cli";
  version = "15.0.0";
  version = "22.0.0";

  src = fetchFromGitHub {
    name = "datafusion-cli-source";
    owner = "apache";
    repo = "arrow-datafusion";
    rev = version;
    sha256 = "sha256-s+gQoczTesJGOpz4W5hBPDdxo4eQnf+D10+V2kx65Io=";
    sha256 = "sha256-TWvbtuLmAdYS8otD2TpVlZx2FJS6DF03U2zM28FNsfc=";
  };
  sourceRoot = "source/datafusion-cli";

  cargoSha256 = "sha256-w+/5Ig+U8y4nwu7QisnZvc3UlZaEU/kovV6birOWndE=";
  sourceRoot = "datafusion-cli-source/datafusion-cli";

  cargoSha256 = "sha256-muWWVJDKm4rbpCK0SS7Zj6umFoMKGMScEAd2ZyZ5An8=";

  buildInputs = lib.optionals stdenv.isDarwin [
    darwin.apple_sdk.frameworks.Security
@@ -26,6 +28,8 @@ rustPlatform.buildRustPackage rec {
  checkFlags = [
    # fails even outside the Nix sandbox
    "--skip=object_storage::tests::s3_region_validation"
    # broken
    "--skip=exec::tests::create_object_store_table_gcs"
  ];

  meta = with lib; {