Files
drawing-robot-ros2/scripts/plot_lite6_csv/shell.nix

12 lines
220 B
Nix

# shell.nix
{ pkgs ? import <nixpkgs> {} }:
let
my-python-packages = p: with p; [
matplotlib
numpy
# other python packages
];
my-python = pkgs.python3.withPackages my-python-packages;
in my-python.env