Unverified Commit ff274305 authored by Phillip Cloud's avatar Phillip Cloud
Browse files

python3.pkgs.datafusion: clean up `typing-extensions` dependency specification

parent c5e62102
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -12,6 +12,7 @@
  Security,
  SystemConfiguration,
  typing-extensions,
  pythonOlder,
}:

let
@@ -19,16 +20,16 @@ let
    name = "arrow-testing";
    owner = "apache";
    repo = "arrow-testing";
    rev = "5bab2f264a23f5af68f69ea93d24ef1e8e77fc88";
    hash = "sha256-Pxx8ohUpXb5u1995IvXmxQMqWiDJ+7LAll/AjQP7ph8=";
    rev = "4d209492d514c2d3cb2d392681b9aa00e6d8da1c";
    hash = "sha256-IkiCbuy0bWyClPZ4ZEdkEP7jFYLhM7RCuNLd6Lazd4o=";
  };

  parquet-testing = fetchFromGitHub {
    name = "parquet-testing";
    owner = "apache";
    repo = "parquet-testing";
    rev = "e13af117de7c4f0a4d9908ae3827b3ab119868f3";
    hash = "sha256-rVI9zyk9IRDlKv4u8BeMb0HRdWLfCpqOlYCeUdA7BB8=";
    rev = "50af3d8ce206990d81014b1862e5ce7380dc3e08";
    hash = "sha256-edyv/r5olkj09aHtm8LHZY0b3jUtLNUcufwI41qKYaY=";
  };
in

@@ -66,8 +67,7 @@ buildPythonPackage rec {

  dependencies = [
    pyarrow
    typing-extensions
  ];
  ] ++ lib.optionals (pythonOlder "3.13") [ typing-extensions ];

  nativeCheckInputs = [
    pytestCheckHook