kafka-experiments/shell.nix

14 lines
234 B
Nix
Raw Permalink Normal View History

2022-12-03 01:20:52 +00:00
{ 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
];
}