mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
python312Packages.chispa: add missing dep, unbreak
This commit is contained in:
parent
9f1f987c19
commit
2074ec37fe
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user