python312Packages.chispa: add missing dep, unbreak

This commit is contained in:
Peder Bergebakken Sundt 2024-11-08 14:25:09 +01:00
parent 9f1f987c19
commit 2074ec37fe

View File

@ -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;