desmos-computer/shell.nix

5 lines
151 B
Nix
Raw Normal View History

{ pkgs ? import <nixpkgs> {} }:
2024-03-24 18:50:55 -05:00
pkgs.mkShell {
nativeBuildInputs = with pkgs.python311Packages; [ websockets watchdog pyperclip pyparsing ];
2024-03-24 18:50:55 -05:00
}