Add shell.nix for using poetry

This commit is contained in:
Tim Van Baak 2020-12-28 23:13:17 -08:00
parent 79574e3241
commit 9ca0670fbd
1 changed files with 9 additions and 0 deletions

9
shell.nix Normal file
View File

@ -0,0 +1,9 @@
{ pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/405d762a1a05ffed2ac820eb4bae4bc49bc3abf2.tar.gz") {}
}:
pkgs.mkShell {
buildInputs = [
pkgs.python3
pkgs.poetry
];
}