12 lines
173 B
Nix
12 lines
173 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
(python3.withPackages ( ps: with ps; [
|
|
numpy
|
|
pygame
|
|
ptpython
|
|
]))
|
|
];
|
|
}
|