cassandra: Use our cassandra-driver for cqlsh

... instead of bundled `cassandra-driver-internal-only-*.zip`.
This way it's more up to date, and follows our best practices.
"internal" plainly confirms that this is better.
This commit is contained in:
Robert Hensing
2026-04-01 01:20:40 +02:00
parent ab2aa9915c
commit b376c14b43
+2
View File
@@ -111,6 +111,8 @@ stdenv.mkDerivation rec {
rm $out/bin/cqlsh
# Make "cqlsh.py" accessible by invoking "cqlsh"
ln -s $out/bin/cqlsh.py $out/bin/cqlsh
# Use nixpkgs Python packages instead of bundled zips
makeWrapperArgs+=("--set" "CQLSH_NO_BUNDLED" "1")
wrapPythonPrograms
'';