diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..453f5ac --- /dev/null +++ b/shell.nix @@ -0,0 +1,9 @@ +{ pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/405d762a1a05ffed2ac820eb4bae4bc49bc3abf2.tar.gz") {} +}: + +pkgs.mkShell { + buildInputs = [ + pkgs.python3 + pkgs.poetry + ]; +}