Unverified Commit 20a337f4 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

python312Packages.chispa: add missing dep, unbreak (#354487)

parents 79f09e7f 2074ec37
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@
  poetry-core,
  pythonOlder,
  setuptools,
  prettytable,
}:

buildPythonPackage rec {
@@ -21,9 +22,12 @@ buildPythonPackage rec {
    hash = "sha256-WPtn8YGlj67MEy2onxoU5SctQ7NcvTImaU0VgMoz2B4=";
  };

  nativeBuildInputs = [ poetry-core ];
  build-system = [ poetry-core ];

  propagatedBuildInputs = [ setuptools ];
  dependencies = [
    setuptools
    prettytable
  ];

  # Tests require a spark installation
  doCheck = false;