Add lite6 path plotting script

This commit is contained in:
2023-03-02 18:10:54 +02:00
parent 58a27194bc
commit da28b3ad82
3 changed files with 95 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
# 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