game-of-life-golf/shell.nix

12 lines
173 B
Nix
Raw Normal View History

2024-02-13 20:21:09 +01:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
packages = with pkgs; [
(python3.withPackages ( ps: with ps; [
numpy
pygame
ptpython
]))
];
}