13 lines
227 B
Nix
13 lines
227 B
Nix
|
{ pkgs ? import <nixpkgs> { } }:
|
||
|
|
||
|
pkgs.mkShell {
|
||
|
buildInputs = with pkgs; [
|
||
|
poetry
|
||
|
python3
|
||
|
python310Packages.numpy
|
||
|
python310Packages.matplotlib
|
||
|
python310Packages.ipykernel
|
||
|
python310Packages.pip
|
||
|
];
|
||
|
}
|