From 0150c54284b7ba5b51b80d3e6ac052063e1eaf61 Mon Sep 17 00:00:00 2001 From: coolneng <akasroua@gmail.com> Date: Fri, 17 Jul 2020 17:20:37 +0200 Subject: [PATCH] Add shell.nix to include Python 3.8 --- shell.nix | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..c728d39 --- /dev/null +++ b/shell.nix @@ -0,0 +1,5 @@ +{ pkgs ? import <nixpkgs> { } }: + +with pkgs; + +mkShell { buildInputs = [ python38 ]; }