Add shell.nix to include Python 3.8

This commit is contained in:
2020-07-17 17:20:37 +02:00
parent 98cc6ebdb9
commit 0150c54284

5
shell.nix Normal file
View File

@@ -0,0 +1,5 @@
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell { buildInputs = [ python38 ]; }