1
Fork 0
solar-conflux/python/tram-stat-problem/shell.nix

11 lines
155 B
Nix
Raw Normal View History

{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
packages = [
(pkgs.python3.withPackages (ps: with ps; [
numpy
matplotlib
]))
];
}