kafka-experiments/shell.nix
2022-12-03 02:20:52 +01:00

14 lines
234 B
Nix

{ pkgs ? import <nixpkgs> {} }:
let
my-python = pkgs.python3;
python-with-my-packages = my-python.withPackages (p: with p; [
kafka-python
zstandard
]);
in
pkgs.mkShell {
packages = [
python-with-my-packages
];
}