Skip to content

Commit 20a337f

Browse files
authored
python312Packages.chispa: add missing dep, unbreak (#354487)
2 parents 79f09e7 + 2074ec3 commit 20a337f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

pkgs/development/python-modules/chispa/default.nix

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
poetry-core,
66
pythonOlder,
77
setuptools,
8+
prettytable,
89
}:
910

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

24-
nativeBuildInputs = [ poetry-core ];
25+
build-system = [ poetry-core ];
2526

26-
propagatedBuildInputs = [ setuptools ];
27+
dependencies = [
28+
setuptools
29+
prettytable
30+
];
2731

2832
# Tests require a spark installation
2933
doCheck = false;

0 commit comments

Comments
 (0)