From 9ca0670fbd1e92b06ffa38f21cbf043323f258ff Mon Sep 17 00:00:00 2001 From: Tim Van Baak Date: Mon, 28 Dec 2020 23:13:17 -0800 Subject: [PATCH] Add shell.nix for using poetry --- shell.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 shell.nix 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 + ]; +}